Making the behavior deterministic when the IME picker is shown.
In the language & input settings, the auxiliary IME subtypes have been hidden since they should not be a default. With Id156c85535a22, now we can explicitly control the behavior of input method picker. Note the this CL should not change any user visible behaviors. Bug: 20763994 Change-Id: I9f797d07ba02363fab58ceb9aecb3cc11fbc407e
This commit is contained in:
committed by
Yohei Yukawa
parent
bc95630994
commit
e792729b4c
@@ -325,7 +325,7 @@ public class InputMethodAndLanguageSettings extends SettingsPreferenceFragment
|
||||
} else if (KEY_CURRENT_INPUT_METHOD.equals(preference.getKey())) {
|
||||
final InputMethodManager imm = (InputMethodManager)
|
||||
getSystemService(Context.INPUT_METHOD_SERVICE);
|
||||
imm.showInputMethodPicker();
|
||||
imm.showInputMethodPicker(false /* showAuxiliarySubtypes */);
|
||||
}
|
||||
} else if (preference instanceof SwitchPreference) {
|
||||
final SwitchPreference pref = (SwitchPreference) preference;
|
||||
|
Reference in New Issue
Block a user