From 0972d071cd1b5eba60a6c20551f4500b638a1bf1 Mon Sep 17 00:00:00 2001 From: "Tadashi G. Takaoka" Date: Fri, 30 Jul 2010 15:18:56 -0700 Subject: Fix KeyboardView's verticalCorrection handling Do not correct the touch point if it is within the range of verticalCorrection from the top of KeyboardView, so that the touch point will not have negative y-axis value. Bug: 2659128 Change-Id: I91a3e65fc5dee1383dbbfb45690e307fc0adc1d1 --- core/java/android/inputmethodservice/KeyboardView.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'core/java') diff --git a/core/java/android/inputmethodservice/KeyboardView.java b/core/java/android/inputmethodservice/KeyboardView.java index 4b48409..ab5c78a 100644 --- a/core/java/android/inputmethodservice/KeyboardView.java +++ b/core/java/android/inputmethodservice/KeyboardView.java @@ -1128,7 +1128,9 @@ public class KeyboardView extends View implements View.OnClickListener { private boolean onModifiedTouchEvent(MotionEvent me, boolean possiblePoly) { int touchX = (int) me.getX() - mPaddingLeft; - int touchY = (int) me.getY() + mVerticalCorrection - mPaddingTop; + int touchY = (int) me.getY() - mPaddingTop; + if (touchY >= -mVerticalCorrection) + touchY += mVerticalCorrection; final int action = me.getAction(); final long eventTime = me.getEventTime(); mOldEventTime = eventTime; -- cgit v1.1