diff options
| author | Tadashi G. Takaoka <takaoka@google.com> | 2011-07-01 13:07:59 +0900 |
|---|---|---|
| committer | Tadashi G. Takaoka <takaoka@google.com> | 2011-07-04 18:53:50 +0900 |
| commit | 5f6816fa8bf259f0340a3d12c551d1532f647d66 (patch) | |
| tree | 9a8a2dcda6de382ea06ca0a233e87c9dfd80d4ef /java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java | |
| parent | 386899a8b09f18659c1f4c0ddd9fd51ad765792b (diff) | |
Move keyboard event handling code to separate LatinKeyboardBaseView class
To sort out the issue, main keyboard and mini keyboard have to share
the pointer trackers.
In order to prepare for that, KeyboardView needs to be refactored as
two separate classes. KeyboardView is responsible for drawing keyboard
visual. And LatinKeyboardBaseView is responsible for handling key
event and mini keyboard as well.
Bug: 4768084
Change-Id: I5643e333b9bdfde0c939a0693cea76bd22f38897
Diffstat (limited to 'java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java')
| -rw-r--r-- | java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java b/java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java index 75d022b52..510bc16b4 100644 --- a/java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java +++ b/java/src/com/android/inputmethod/keyboard/LatinKeyboardView.java @@ -27,7 +27,7 @@ import com.android.inputmethod.latin.LatinImeLogger; import com.android.inputmethod.latin.Utils; // TODO: We should remove this class -public class LatinKeyboardView extends KeyboardView { +public class LatinKeyboardView extends LatinKeyboardBaseView { private static final String TAG = LatinKeyboardView.class.getSimpleName(); private static boolean DEBUG_MODE = LatinImeLogger.sDBG; |
