diff options
author | 2012-04-05 19:17:30 -0700 | |
---|---|---|
committer | 2012-04-05 19:17:30 -0700 | |
commit | fc169c726a12f47c3641fc2570d16aa26825710c (patch) | |
tree | 0bb14631cb79c283adbc99991432d990bddbf842 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 0cedde120b02629ab86efd1ef015ad1ee2d8783a (diff) | |
parent | 11d9ee742f8ff3fb31b0e3beb32ee4870c63d8e3 (diff) | |
download | latinime-fc169c726a12f47c3641fc2570d16aa26825710c.tar.gz latinime-fc169c726a12f47c3641fc2570d16aa26825710c.tar.xz latinime-fc169c726a12f47c3641fc2570d16aa26825710c.zip |
Merge "Use keyboardSet extra value of subtype to specify layout type"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 8a26d2b9e..f5c09974e 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -115,16 +115,15 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen public static final String IME_OPTION_FORCE_ASCII = "forceAscii"; /** - * The subtype extra value used to indicate that the subtype keyboard layout is capable for - * typing ASCII characters. + * The subtype extra value used to indicate that the subtype keyboard layout set name. */ - public static final String SUBTYPE_EXTRA_VALUE_ASCII_CAPABLE = "AsciiCapable"; + public static final String SUBTYPE_EXTRA_VALUE_KEYBOARD_LAYOUT_SET = "KeyboardLayoutSet"; /** - * The subtype extra value used to indicate that the subtype keyboard layout should be loaded - * from the specified locale. + * The subtype extra value used to indicate that the subtype keyboard layout is capable for + * typing ASCII characters. */ - public static final String SUBTYPE_EXTRA_VALUE_KEYBOARD_LOCALE = "KeyboardLocale"; + public static final String SUBTYPE_EXTRA_VALUE_ASCII_CAPABLE = "AsciiCapable"; private static final int EXTENDED_TOUCHABLE_REGION_HEIGHT = 100; |