[DO NOT MERGE] Clear properties after interaction is ended am: 1145db5d8e

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12085174

Change-Id: I5de4599c4f13937523125b73be4199918752024d
This commit is contained in:
ryanlwlin
2020-07-08 07:24:52 +00:00
committed by Automerger Merge Worker
2 changed files with 7 additions and 0 deletions

View File

@@ -322,6 +322,12 @@ class EventDispatcher {
return true; return true;
} }
void clear() {
mLongPressingPointerId = -1;
mLongPressingPointerDeltaX = 0;
mLongPressingPointerDeltaY = 0;
}
public void clickWithTouchEvents(MotionEvent event, MotionEvent rawEvent, int policyFlags) { public void clickWithTouchEvents(MotionEvent event, MotionEvent rawEvent, int policyFlags) {
final int pointerIndex = event.getActionIndex(); final int pointerIndex = event.getActionIndex();
final int pointerId = event.getPointerId(pointerIndex); final int pointerId = event.getPointerId(pointerIndex);

View File

@@ -809,6 +809,7 @@ public class TouchExplorer extends BaseEventStreamTransformation
// Announce the end of a the touch interaction. // Announce the end of a the touch interaction.
mAms.onTouchInteractionEnd(); mAms.onTouchInteractionEnd();
mDispatcher.clear();
mDispatcher.sendAccessibilityEvent(AccessibilityEvent.TYPE_TOUCH_INTERACTION_END); mDispatcher.sendAccessibilityEvent(AccessibilityEvent.TYPE_TOUCH_INTERACTION_END);
} break; } break;