aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-02-17 08:26:38 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-02-17 08:26:38 +0000
commit1751615f7d6702c6f3438a402e0ce179aafd15cf (patch)
tree8661e036d984917bf6d72e51a5fcc2a972a51ad2 /java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
parent3dd6bdf9312007ed43827975d121e972b98ab5e3 (diff)
parent800ab579a96bcb51d1e841b745de646d0b2b7895 (diff)
downloadlatinime-1751615f7d6702c6f3438a402e0ce179aafd15cf.tar.gz
latinime-1751615f7d6702c6f3438a402e0ce179aafd15cf.tar.xz
latinime-1751615f7d6702c6f3438a402e0ce179aafd15cf.zip
Merge "Remove unnecessary override of MainKeyboardView.dispatchTouchEvent"
Diffstat (limited to 'java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java')
-rw-r--r--java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java b/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
index d0d5399c6..0043b7844 100644
--- a/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
+++ b/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
@@ -204,19 +204,6 @@ public final class AccessibleKeyboardViewProxy extends AccessibilityDelegateComp
}
/**
- * Intercepts touch events before dispatch when touch exploration is turned on in ICS and
- * higher.
- *
- * @param event The motion event being dispatched.
- * @return {@code true} if the event is handled
- */
- public boolean dispatchTouchEvent(final MotionEvent event) {
- // To avoid accidental key presses during touch exploration, always drop
- // touch events generated by the user.
- return false;
- }
-
- /**
* Receives hover events when touch exploration is turned on in SDK versions ICS and higher.
*
* @param event The hover event.