diff options
Diffstat (limited to 'java')
-rwxr-xr-x | java/res/xml-ru/kbd_qwerty_black.xml | 8 | ||||
-rwxr-xr-x | java/src/com/android/inputmethod/latin/Suggest.java | 3 |
2 files changed, 7 insertions, 4 deletions
diff --git a/java/res/xml-ru/kbd_qwerty_black.xml b/java/res/xml-ru/kbd_qwerty_black.xml index e500b97f2..4923be01a 100755 --- a/java/res/xml-ru/kbd_qwerty_black.xml +++ b/java/res/xml-ru/kbd_qwerty_black.xml @@ -70,7 +70,9 @@ <Key android:keyLabel="м"/> <Key android:keyLabel="и"/> <Key android:keyLabel="т"/> - <Key android:keyLabel="ь"/> + <Key android:keyLabel="ь" + android:popupKeyboard="@xml/kbd_popup_template" + android:popupCharacters="ъ" /> <Key android:keyLabel="б"/> <Key android:keyLabel="ю"/> <Key android:codes="-5" android:keyIcon="@drawable/sym_bkeyboard_delete" @@ -158,10 +160,10 @@ android:popupCharacters="_" android:keyWidth="20%p" android:keyEdgeFlags="left"/> <Key android:codes="@integer/key_f1" android:keyIcon="@drawable/sym_bkeyboard_globe" - android:keyWidth="10%p"/>¯ + android:keyWidth="10%p"/> <Key android:codes="32" android:keyIcon="@drawable/sym_bkeyboard_space" android:iconPreview="@drawable/sym_keyboard_feedback_space" - android:keyWidth="20%p" android:isRepeatable="true"/>, + android:keyWidth="20%p" android:isRepeatable="true"/> <Key android:codes="9" android:keyIcon="@drawable/sym_bkeyboard_tab" android:iconPreview="@drawable/sym_keyboard_feedback_tab" android:keyWidth="20%p"/> diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java index 8ef6c07f8..e7b9e5d69 100755 --- a/java/src/com/android/inputmethod/latin/Suggest.java +++ b/java/src/com/android/inputmethod/latin/Suggest.java @@ -197,10 +197,11 @@ public class Suggest implements Dictionary.WordCallback { if (mOriginalWord != null) { mOriginalWord = mOriginalWord.toString(); mLowerOriginalWord = mOriginalWord.toString().toLowerCase(); + LatinImeLogger.onAddSuggestedWord(mOriginalWord.toString(), Suggest.DIC_USER_TYPED); } else { mLowerOriginalWord = ""; } - LatinImeLogger.onAddSuggestedWord(mOriginalWord.toString(), Suggest.DIC_USER_TYPED); + // Search the dictionary only if there are at least 2 characters if (wordComposer.size() > 1) { if (mUserDictionary != null || mContactsDictionary != null) { |