am 792980d4
: Avoid calling switchToLastInputMethod when other IMEs are in effect (DO NOT MERGE)
* commit '792980d4aa4d0d91a5acfcbaba3f4471f1d2c073': Avoid calling switchToLastInputMethod when other IMEs are in effect (DO NOT MERGE)
This commit is contained in:
commit
c0a5f07c9b
1 changed files with 8 additions and 5 deletions
|
@ -1219,22 +1219,25 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
|
|||
mConnection.performEditorAction(actionId);
|
||||
}
|
||||
|
||||
// TODO: Revise the language switch key behavior to make it much smarter and more reasonable.
|
||||
private void handleLanguageSwitchKey() {
|
||||
final boolean includesOtherImes = mCurrentSettings.mIncludesOtherImesInLanguageSwitchList;
|
||||
final IBinder token = getWindow().getWindow().getAttributes().token;
|
||||
if (mCurrentSettings.mIncludesOtherImesInLanguageSwitchList) {
|
||||
mImm.switchToNextInputMethod(token, false /* onlyCurrentIme */);
|
||||
return;
|
||||
}
|
||||
if (mShouldSwitchToLastSubtype) {
|
||||
final InputMethodSubtype lastSubtype = mImm.getLastInputMethodSubtype();
|
||||
final boolean lastSubtypeBelongsToThisIme =
|
||||
ImfUtils.checkIfSubtypeBelongsToThisImeAndEnabled(this, lastSubtype);
|
||||
if ((includesOtherImes || lastSubtypeBelongsToThisIme)
|
||||
&& mImm.switchToLastInputMethod(token)) {
|
||||
if (lastSubtypeBelongsToThisIme && mImm.switchToLastInputMethod(token)) {
|
||||
mShouldSwitchToLastSubtype = false;
|
||||
} else {
|
||||
mImm.switchToNextInputMethod(token, !includesOtherImes);
|
||||
mImm.switchToNextInputMethod(token, true /* onlyCurrentIme */);
|
||||
mShouldSwitchToLastSubtype = true;
|
||||
}
|
||||
} else {
|
||||
mImm.switchToNextInputMethod(token, !includesOtherImes);
|
||||
mImm.switchToNextInputMethod(token, true /* onlyCurrentIme */);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue