diff options
author | 2010-09-03 01:51:38 -0700 | |
---|---|---|
committer | 2010-09-03 01:51:38 -0700 | |
commit | 1b09ac4f93a0138a414094c374fa2ff12e39c71a (patch) | |
tree | 9efc4e259d794aa68dd38d9ddcfd51d6c353070e /java/src/com/android/inputmethod/latin/LatinKeyboardView.java | |
parent | 5583cb0afcb2104a10689a1c60c051a99e98678b (diff) | |
parent | 9a6a4d3d5f1ee52b56d349c002aa61c264d010d3 (diff) | |
download | latinime-1b09ac4f93a0138a414094c374fa2ff12e39c71a.tar.gz latinime-1b09ac4f93a0138a414094c374fa2ff12e39c71a.tar.xz latinime-1b09ac4f93a0138a414094c374fa2ff12e39c71a.zip |
Merge "Add a showing input method picker option by longpressing setting key" into gingerbread
Diffstat (limited to '')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinKeyboardView.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinKeyboardView.java b/java/src/com/android/inputmethod/latin/LatinKeyboardView.java index 7a993669b..9236d6820 100644 --- a/java/src/com/android/inputmethod/latin/LatinKeyboardView.java +++ b/java/src/com/android/inputmethod/latin/LatinKeyboardView.java @@ -32,6 +32,7 @@ import java.util.List; public class LatinKeyboardView extends LatinKeyboardBaseView { static final int KEYCODE_OPTIONS = -100; + static final int KEYCODE_OPTIONS_LONGPRESS = -101; static final int KEYCODE_VOICE = -102; static final int KEYCODE_F1 = -103; static final int KEYCODE_NEXT_LANGUAGE = -104; @@ -76,7 +77,12 @@ public class LatinKeyboardView extends LatinKeyboardBaseView { @Override protected boolean onLongPress(Key key) { - if (key.codes[0] == '0' && getKeyboard() == mPhoneKeyboard) { + if (key.codes[0] == KEYCODE_OPTIONS) { + getOnKeyboardActionListener().onKey(KEYCODE_OPTIONS_LONGPRESS, null, + LatinKeyboardBaseView.NOT_A_TOUCH_COORDINATE, + LatinKeyboardBaseView.NOT_A_TOUCH_COORDINATE); + return true; + } else if (key.codes[0] == '0' && getKeyboard() == mPhoneKeyboard) { // Long pressing on 0 in phone number keypad gives you a '+'. getOnKeyboardActionListener().onKey( '+', null, LatinKeyboardBaseView.NOT_A_TOUCH_COORDINATE, |