aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/accessibility/KeyboardAccessibilityDelegate.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-06-02 17:05:04 +0900
committerTadashi G. Takaoka <takaoka@google.com>2014-06-02 17:13:47 +0900
commita021395e84d4a934c042c56ef03f352cf43463f3 (patch)
tree924c8709c13c8922d9e8d296e1d13066561645b5 /java/src/com/android/inputmethod/accessibility/KeyboardAccessibilityDelegate.java
parentd0b79cc12a7ea064bbd6bae51ed61bda13d938bd (diff)
downloadlatinime-a021395e84d4a934c042c56ef03f352cf43463f3.tar.gz
latinime-a021395e84d4a934c042c56ef03f352cf43463f3.tar.xz
latinime-a021395e84d4a934c042c56ef03f352cf43463f3.zip
Pass hover event to accessibility key handling methods
Bug: 12491371 Change-Id: I1f7feef707b95e8862db71cbc4f6f5585a2441dd
Diffstat (limited to 'java/src/com/android/inputmethod/accessibility/KeyboardAccessibilityDelegate.java')
-rw-r--r--java/src/com/android/inputmethod/accessibility/KeyboardAccessibilityDelegate.java27
1 files changed, 15 insertions, 12 deletions
diff --git a/java/src/com/android/inputmethod/accessibility/KeyboardAccessibilityDelegate.java b/java/src/com/android/inputmethod/accessibility/KeyboardAccessibilityDelegate.java
index 8ed019605..398a933df 100644
--- a/java/src/com/android/inputmethod/accessibility/KeyboardAccessibilityDelegate.java
+++ b/java/src/com/android/inputmethod/accessibility/KeyboardAccessibilityDelegate.java
@@ -181,7 +181,7 @@ public class KeyboardAccessibilityDelegate<KV extends KeyboardView>
protected void onHoverEnter(final MotionEvent event) {
final Key key = getHoverKeyOf(event);
if (key != null) {
- onHoverEnterKey(key);
+ onHoverEnterKey(key, event);
}
setLastHoverKey(key);
}
@@ -192,18 +192,18 @@ public class KeyboardAccessibilityDelegate<KV extends KeyboardView>
* @param event A hover move event.
*/
protected void onHoverMove(final MotionEvent event) {
- final Key previousKey = getLastHoverKey();
+ final Key lastKey = getLastHoverKey();
final Key key = getHoverKeyOf(event);
- if (key != previousKey) {
- if (previousKey != null) {
- onHoverExitKey(previousKey);
+ if (key != lastKey) {
+ if (lastKey != null) {
+ onHoverExitKey(lastKey, event);
}
if (key != null) {
- onHoverEnterKey(key);
+ onHoverEnterKey(key, event);
}
}
if (key != null) {
- onHoverMoveKey(key);
+ onHoverMoveKey(key, event);
}
setLastHoverKey(key);
}
@@ -216,7 +216,7 @@ public class KeyboardAccessibilityDelegate<KV extends KeyboardView>
protected void onHoverExit(final MotionEvent event) {
final Key lastKey = getLastHoverKey();
if (lastKey != null) {
- onHoverExitKey(lastKey);
+ onHoverExitKey(lastKey, event);
}
final Key key = getHoverKeyOf(event);
// Make sure we're not getting an EXIT event because the user slid
@@ -224,7 +224,7 @@ public class KeyboardAccessibilityDelegate<KV extends KeyboardView>
if (key != null) {
simulateTouchEvent(MotionEvent.ACTION_DOWN, event);
simulateTouchEvent(MotionEvent.ACTION_UP, event);
- onHoverExitKey(key);
+ onHoverExitKey(key, event);
}
setLastHoverKey(null);
}
@@ -267,8 +267,9 @@ public class KeyboardAccessibilityDelegate<KV extends KeyboardView>
* Handles a hover enter event on a key.
*
* @param key The currently hovered key.
+ * @param event The hover event that triggers a call to this method.
*/
- protected void onHoverEnterKey(final Key key) {
+ protected void onHoverEnterKey(final Key key, final MotionEvent event) {
key.onPressed();
mKeyboardView.invalidateKey(key);
final KeyboardAccessibilityNodeProvider provider = getAccessibilityNodeProvider();
@@ -280,15 +281,17 @@ public class KeyboardAccessibilityDelegate<KV extends KeyboardView>
* Handles a hover move event on a key.
*
* @param key The currently hovered key.
+ * @param event The hover event that triggers a call to this method.
*/
- protected void onHoverMoveKey(final Key key) { }
+ protected void onHoverMoveKey(final Key key, final MotionEvent event) { }
/**
* Handles a hover exit event on a key.
*
* @param key The currently hovered key.
+ * @param event The hover event that triggers a call to this method.
*/
- protected void onHoverExitKey(final Key key) {
+ protected void onHoverExitKey(final Key key, final MotionEvent event) {
key.onReleased();
mKeyboardView.invalidateKey(key);
final KeyboardAccessibilityNodeProvider provider = getAccessibilityNodeProvider();