diff options
author | 2010-09-09 14:43:17 +0900 | |
---|---|---|
committer | 2010-09-09 20:43:13 +0900 | |
commit | efc4a437942f0bccd8815059c5f9d823023cfac1 (patch) | |
tree | f74e94efbdd11ff92ef871758fbe8fb4834ba516 /java/src/com/android/inputmethod/latin/LatinKeyboardView.java | |
parent | 681b676b0aecb30e644f25550018ce2b6cea3e15 (diff) | |
download | latinime-efc4a437942f0bccd8815059c5f9d823023cfac1.tar.gz latinime-efc4a437942f0bccd8815059c5f9d823023cfac1.tar.xz latinime-efc4a437942f0bccd8815059c5f9d823023cfac1.zip |
Symbol key acts as modifier key
On a device that has distinct multi-touch panel, pressing '123?' key
will change keyboard layout to symbol mode. While pressing '123?'
key, you can press other symbol key to input. Then releasing '123?'
key will change keyboard layout back to alphabet mode.
Bug: 2973383
Change-Id: I3b069fb19141820def8060db4766a08c7c0a6ff0
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinKeyboardView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinKeyboardView.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinKeyboardView.java b/java/src/com/android/inputmethod/latin/LatinKeyboardView.java index 8f20a22d0..c17d7c555 100644 --- a/java/src/com/android/inputmethod/latin/LatinKeyboardView.java +++ b/java/src/com/android/inputmethod/latin/LatinKeyboardView.java @@ -52,9 +52,6 @@ public class LatinKeyboardView extends LatinKeyboardBaseView { /** The y coordinate of the last row */ private int mLastRowY; - // This is local working variable for onLongPress(). - private int[] mKeyCodes = new int[1]; - public LatinKeyboardView(Context context, AttributeSet attrs) { super(context, attrs); } |