aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-01-17 04:57:28 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-17 04:57:28 -0800
commit8cc6e8e5c3d9028d33256c0add7ecbb4cd9270b3 (patch)
treeb51bea2a3483cc30823a69ca8f596ddeeefd874f /java/src
parent90a916170f34865a1941933c4afe143d489b29b1 (diff)
parent8bec4aa912c193135bebacfc75dc15f06c5dce6e (diff)
downloadlatinime-8cc6e8e5c3d9028d33256c0add7ecbb4cd9270b3.tar.gz
latinime-8cc6e8e5c3d9028d33256c0add7ecbb4cd9270b3.tar.xz
latinime-8cc6e8e5c3d9028d33256c0add7ecbb4cd9270b3.zip
Merge "Fix voice key enable status has not been reflected to keyboard id" into honeycomb
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java b/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java
index 25ef847cd..42af8a8d6 100644
--- a/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java
+++ b/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java
@@ -174,12 +174,6 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
private void loadKeyboardInternal(int mode, int imeOptions, boolean voiceButtonEnabled,
boolean voiceButtonOnPrimary, boolean isSymbols) {
if (mInputView == null) return;
- final Keyboard oldKeyboard = mInputView.getKeyboard();
- final KeyboardId id = getKeyboardId(mode, imeOptions, isSymbols);
- if (oldKeyboard != null && oldKeyboard.mId.equals(id))
- return;
-
- mInputView.setPreviewEnabled(mInputMethodService.getPopupOn());
mMode = mode;
mImeOptions = imeOptions;
@@ -188,9 +182,15 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
mIsSymbols = isSymbols;
// Update the settings key state because number of enabled IMEs could have been changed
mHasSettingsKey = getSettingsKeyMode(mPrefs, mInputMethodService);
- makeSymbolsKeyboardIds();
+ final KeyboardId id = getKeyboardId(mode, imeOptions, isSymbols);
+ final Keyboard oldKeyboard = mInputView.getKeyboard();
+ if (oldKeyboard != null && oldKeyboard.mId.equals(id))
+ return;
+
+ makeSymbolsKeyboardIds();
mCurrentId = id;
+ mInputView.setPreviewEnabled(mInputMethodService.getPopupOn());
mInputView.setKeyboard(getKeyboard(id));
}