Show aux ime in the selection dialog if a keyboard is shown.

Bug: 4968819

Change-Id: If4ac4549f179637fe3ecd313edcb44d5eb89349f
This commit is contained in:
satok
2011-06-29 18:06:25 +09:00
parent 01fa0d7aae
commit 7dca6cd82d

View File

@ -2025,8 +2025,9 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
final int subtypeCount = imi.getSubtypeCount();
for (int j = 0; j < subtypeCount; ++j) {
InputMethodSubtype subtype = imi.getSubtypeAt(j);
// We show all possible IMEs and subtypes when an IME is shown.
if (enabledSubtypeSet.contains(String.valueOf(subtype.hashCode()))
&& !subtype.isAuxiliary()) {
&& (mInputShown || !subtype.isAuxiliary())) {
final CharSequence title;
int nameResId = subtype.getNameResId();
String mode = subtype.getMode();