Merge "Add a parameter to getEnabledSubtype"
commit
68d483e2a2
|
@ -132,7 +132,8 @@ public class SubtypeSwitcher {
|
|||
// Reload enabledSubtypes from the framework.
|
||||
private void updateEnabledSubtypes() {
|
||||
boolean foundCurrentSubtypeBecameDisabled = true;
|
||||
mAllEnabledSubtypesOfCurrentInputMethod = mImm.getEnabledInputMethodSubtypeList(null);
|
||||
mAllEnabledSubtypesOfCurrentInputMethod = mImm.getEnabledInputMethodSubtypeList(
|
||||
null, false);
|
||||
mEnabledLanguagesOfCurrentInputMethod.clear();
|
||||
mEnabledKeyboardSubtypesOfCurrentInputMethod.clear();
|
||||
for (InputMethodSubtype ims: mAllEnabledSubtypesOfCurrentInputMethod) {
|
||||
|
|
|
@ -90,9 +90,9 @@ public class Utils {
|
|||
|
||||
public static boolean hasMultipleEnabledIMEsOrSubtypes(InputMethodManager imm) {
|
||||
return imm.getEnabledInputMethodList().size() > 1
|
||||
// imm.getEnabledInputMethodSubtypeList(null) will return the current IME's enabled input
|
||||
// method subtype (The current IME should be LatinIME.)
|
||||
|| imm.getEnabledInputMethodSubtypeList(null).size() > 1;
|
||||
// imm.getEnabledInputMethodSubtypeList(null, false) will return the current IME's enabled
|
||||
// input method subtype (The current IME should be LatinIME.)
|
||||
|| imm.getEnabledInputMethodSubtypeList(null, false).size() > 1;
|
||||
}
|
||||
|
||||
/* package */ static class RingCharBuffer {
|
||||
|
|
Loading…
Reference in New Issue