diff options
author | 2009-04-21 14:36:33 -0700 | |
---|---|---|
committer | 2009-04-21 14:36:33 -0700 | |
commit | 0221514bd1360c7bfcf6eeaa920da49557c5fd2a (patch) | |
tree | 029ca9a98ae916900e2dca6ff51445794bac4007 /src | |
parent | 353da6d207bed3d32ec38b9ce52e4a136adbf060 (diff) | |
download | latinime-0221514bd1360c7bfcf6eeaa920da49557c5fd2a.tar.gz latinime-0221514bd1360c7bfcf6eeaa920da49557c5fd2a.tar.xz latinime-0221514bd1360c7bfcf6eeaa920da49557c5fd2a.zip |
AI 147226: Create symbols and shifted symbols keyboards when initializing KeyboardSwitcher.
Automated import of CL 147226
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/inputmethod/latin/KeyboardSwitcher.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/inputmethod/latin/KeyboardSwitcher.java b/src/com/android/inputmethod/latin/KeyboardSwitcher.java index 187401a75..52067526a 100644 --- a/src/com/android/inputmethod/latin/KeyboardSwitcher.java +++ b/src/com/android/inputmethod/latin/KeyboardSwitcher.java @@ -72,6 +72,8 @@ public class KeyboardSwitcher { if (displayWidth == mLastDisplayWidth) return; mLastDisplayWidth = displayWidth; mKeyboards.clear(); + mSymbolsId = new KeyboardId(R.xml.kbd_symbols); + mSymbolsShiftedId = new KeyboardId(R.xml.kbd_symbols_shift); } /** |