diff options
author | 2010-05-26 22:56:13 +0900 | |
---|---|---|
committer | 2010-05-27 12:06:58 +0900 | |
commit | f22d479e48c2cd951f64e4f4a2b1202e7860c240 (patch) | |
tree | 57b17867ff0fcc37609191e14e365db9868ccac9 /java/src/com/android/inputmethod/latin/KeyboardSwitcher.java | |
parent | b72f348467888d6f759f8b287ec94425c2748ec0 (diff) | |
download | latinime-f22d479e48c2cd951f64e4f4a2b1202e7860c240.tar.gz latinime-f22d479e48c2cd951f64e4f4a2b1202e7860c240.tar.xz latinime-f22d479e48c2cd951f64e4f4a2b1202e7860c240.zip |
Log and UI fix
- add Log entry for the setting of auto completion
- fix the parameter names
- reduce the time to commit
- copy popup window's resources from framework
- change extention window to use the current layout
Change-Id: I5f52c41dc8027c28a874ba8f198471eb3c9bdd1e
Diffstat (limited to 'java/src/com/android/inputmethod/latin/KeyboardSwitcher.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/KeyboardSwitcher.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/KeyboardSwitcher.java b/java/src/com/android/inputmethod/latin/KeyboardSwitcher.java index d90261935..c8e226d75 100644 --- a/java/src/com/android/inputmethod/latin/KeyboardSwitcher.java +++ b/java/src/com/android/inputmethod/latin/KeyboardSwitcher.java @@ -378,6 +378,7 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha } mInputView = (LatinKeyboardView) mInputMethodService.getLayoutInflater().inflate( LAYOUTS[newLayout], null); + mInputView.setExtentionLayoutResId(LAYOUTS[newLayout]); mInputView.setOnKeyboardActionListener(mInputMethodService); mLayoutId = newLayout; } |