diff options
author | 2010-12-14 15:31:47 +0900 | |
---|---|---|
committer | 2010-12-17 17:18:28 +0900 | |
commit | 9b6d1d52d91f8f18952ae3841f4bb0d7309bfc0e (patch) | |
tree | 2907b32c1509f69850a3ca6dd6ac36a60341fbd9 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | f61287ae48c17d2afb4c9b971cbdd3ee0cc055e2 (diff) | |
download | latinime-9b6d1d52d91f8f18952ae3841f4bb0d7309bfc0e.tar.gz latinime-9b6d1d52d91f8f18952ae3841f4bb0d7309bfc0e.tar.xz latinime-9b6d1d52d91f8f18952ae3841f4bb0d7309bfc0e.zip |
Add popupKeyboardTemplate attribute to Keyboard
This change
- introduces the popupKeyboardTemplate attribute of Keyboard to
specify XML Keyboard file for popup mini keyboard.
- introduces the maxPopupKeyboardColumn attribute of Keyboard to
specify the maximum column of popup mini keyboard.
- changes the content format of the popupCharacters attribute of Key.
It now represents keyLabel, codes and keyTextOutput of each key of
popup mini keyboard using CSV format.
Bug: 2214959
Change-Id: I539e310f7e38a049ee193de0b4ad5d7afdce37b1
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 243306a35..12a24e87a 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -2039,7 +2039,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen && prefs.getBoolean(Settings.PREF_VIBRATE_ON, false); mSoundOn = prefs.getBoolean(Settings.PREF_SOUND_ON, false); mPopupOn = prefs.getBoolean(Settings.PREF_POPUP_ON, - mResources.getBoolean(R.bool.default_popup_preview)); + mResources.getBoolean(R.bool.config_default_popup_preview)); mAutoCap = prefs.getBoolean(Settings.PREF_AUTO_CAP, true); mQuickFixes = prefs.getBoolean(Settings.PREF_QUICK_FIXES, true); |