aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-12-12 17:39:30 +0900
committerTadashi G. Takaoka <takaoka@google.com>2011-12-12 18:19:29 +0900
commit267cd0151f038d4d1654b9cbea5066d1927dd032 (patch)
tree83c5065bfc2d268b7369c714439eea97e0b76f2e /java/src
parentaa59e24ebec5e09c62d564d97fe790c6763ffc54 (diff)
downloadlatinime-267cd0151f038d4d1654b9cbea5066d1927dd032.tar.gz
latinime-267cd0151f038d4d1654b9cbea5066d1927dd032.tar.xz
latinime-267cd0151f038d4d1654b9cbea5066d1927dd032.zip
Add special handling for "Phone number" layout.
Bug: 5743584 Change-Id: I821b837a2078afb64b460191c98b28f7733cf2c1
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java b/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java
index 77218d3bc..cae0edd9f 100644
--- a/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java
+++ b/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java
@@ -139,6 +139,12 @@ public class KeyboardSwitcher implements KeyboardState.SwitchActions,
mSymbolsShiftedKeyboardId = getKeyboardId(editorInfo, true, true, settingsValues);
mState.onLoadKeyboard(mResources.getString(R.string.layout_switch_back_symbols),
hasDistinctMultitouch());
+ // TODO: Should get rid of this special case handling for Phone Number layouts once we
+ // have separate layouts with unique KeyboardIds for alphabet and alphabet-shifted
+ // respectively.
+ if (mMainKeyboardId.isPhoneKeyboard()) {
+ mState.onToggleAlphabetAndSymbols();
+ }
} catch (RuntimeException e) {
Log.w(TAG, "loading keyboard failed: " + mMainKeyboardId, e);
LatinImeLogger.logOnException(mMainKeyboardId.toString(), e);