Loading services/java/com/android/server/accessibility/TouchExplorer.java +10 −2 Original line number Diff line number Diff line Loading @@ -487,9 +487,17 @@ public class TouchExplorer implements Explorer { } } break; case MotionEvent.ACTION_POINTER_UP: { final int activePointerCount = mPointerTracker.getActivePointerCount(); switch (activePointerCount) { case 1: { // Send an event to the end of the drag gesture. sendMotionEvent(event, MotionEvent.ACTION_UP, pointerIdBits, policyFlags); } break; default: { mCurrentState = STATE_TOUCH_EXPLORING; } } } break; case MotionEvent.ACTION_UP: { mCurrentState = STATE_TOUCH_EXPLORING; } break; Loading Loading
services/java/com/android/server/accessibility/TouchExplorer.java +10 −2 Original line number Diff line number Diff line Loading @@ -487,9 +487,17 @@ public class TouchExplorer implements Explorer { } } break; case MotionEvent.ACTION_POINTER_UP: { final int activePointerCount = mPointerTracker.getActivePointerCount(); switch (activePointerCount) { case 1: { // Send an event to the end of the drag gesture. sendMotionEvent(event, MotionEvent.ACTION_UP, pointerIdBits, policyFlags); } break; default: { mCurrentState = STATE_TOUCH_EXPLORING; } } } break; case MotionEvent.ACTION_UP: { mCurrentState = STATE_TOUCH_EXPLORING; } break; Loading