mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
- Add offsetX, offsetY values
Summary: Changelog: [Internal] Provide Android backing for offsetX, offsetY values. Reviewed By: javache Differential Revision: D37734498 fbshipit-source-id: f0f6daea3a2da27c79d42b9546eafa757ec448e7
This commit is contained in:
committed by
Facebook GitHub Bot
parent
c81a3c5242
commit
4f522be373
@@ -128,7 +128,11 @@ public class JSPointerDispatcher {
|
||||
if (listeningForDown) {
|
||||
eventDispatcher.dispatchEvent(
|
||||
PointerEvent.obtain(
|
||||
PointerEventHelper.POINTER_DOWN, surfaceId, activeTargetTag, motionEvent));
|
||||
PointerEventHelper.POINTER_DOWN,
|
||||
surfaceId,
|
||||
activeTargetTag,
|
||||
motionEvent,
|
||||
mTargetCoordinates));
|
||||
}
|
||||
|
||||
return;
|
||||
@@ -149,7 +153,11 @@ public class JSPointerDispatcher {
|
||||
if (listeningForDown) {
|
||||
eventDispatcher.dispatchEvent(
|
||||
PointerEvent.obtain(
|
||||
PointerEventHelper.POINTER_DOWN, surfaceId, activeTargetTag, motionEvent));
|
||||
PointerEventHelper.POINTER_DOWN,
|
||||
surfaceId,
|
||||
activeTargetTag,
|
||||
motionEvent,
|
||||
mTargetCoordinates));
|
||||
}
|
||||
|
||||
return;
|
||||
@@ -167,6 +175,7 @@ public class JSPointerDispatcher {
|
||||
surfaceId,
|
||||
activeTargetTag,
|
||||
motionEvent,
|
||||
mTargetCoordinates,
|
||||
coalescingKey));
|
||||
}
|
||||
|
||||
@@ -182,7 +191,11 @@ public class JSPointerDispatcher {
|
||||
if (listeningForUp) {
|
||||
eventDispatcher.dispatchEvent(
|
||||
PointerEvent.obtain(
|
||||
PointerEventHelper.POINTER_UP, surfaceId, activeTargetTag, motionEvent));
|
||||
PointerEventHelper.POINTER_UP,
|
||||
surfaceId,
|
||||
activeTargetTag,
|
||||
motionEvent,
|
||||
mTargetCoordinates));
|
||||
}
|
||||
|
||||
return;
|
||||
@@ -200,7 +213,11 @@ public class JSPointerDispatcher {
|
||||
if (listeningForUp) {
|
||||
eventDispatcher.dispatchEvent(
|
||||
PointerEvent.obtain(
|
||||
PointerEventHelper.POINTER_UP, surfaceId, activeTargetTag, motionEvent));
|
||||
PointerEventHelper.POINTER_UP,
|
||||
surfaceId,
|
||||
activeTargetTag,
|
||||
motionEvent,
|
||||
mTargetCoordinates));
|
||||
}
|
||||
|
||||
if (!supportsHover) {
|
||||
@@ -279,7 +296,7 @@ public class JSPointerDispatcher {
|
||||
return dispatchableViewTargets;
|
||||
}
|
||||
|
||||
private static void dispatchEventForViewTargets(
|
||||
private void dispatchEventForViewTargets(
|
||||
String eventName,
|
||||
List<ViewTarget> viewTargets,
|
||||
EventDispatcher dispatcher,
|
||||
@@ -288,7 +305,8 @@ public class JSPointerDispatcher {
|
||||
|
||||
for (ViewTarget viewTarget : viewTargets) {
|
||||
int viewId = viewTarget.getViewId();
|
||||
dispatcher.dispatchEvent(PointerEvent.obtain(eventName, surfaceId, viewId, motionEvent));
|
||||
dispatcher.dispatchEvent(
|
||||
PointerEvent.obtain(eventName, surfaceId, viewId, motionEvent, mTargetCoordinates));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -416,7 +434,12 @@ public class JSPointerDispatcher {
|
||||
if (listeningToMove) {
|
||||
eventDispatcher.dispatchEvent(
|
||||
PointerEvent.obtain(
|
||||
PointerEventHelper.POINTER_MOVE, surfaceId, targetTag, motionEvent, coalescingKey));
|
||||
PointerEventHelper.POINTER_MOVE,
|
||||
surfaceId,
|
||||
targetTag,
|
||||
motionEvent,
|
||||
mTargetCoordinates,
|
||||
coalescingKey));
|
||||
}
|
||||
|
||||
mLastHitPath = hitPath;
|
||||
@@ -443,7 +466,11 @@ public class JSPointerDispatcher {
|
||||
Assertions.assertNotNull(eventDispatcher)
|
||||
.dispatchEvent(
|
||||
PointerEvent.obtain(
|
||||
PointerEventHelper.POINTER_CANCEL, surfaceId, targetTag, motionEvent));
|
||||
PointerEventHelper.POINTER_CANCEL,
|
||||
surfaceId,
|
||||
targetTag,
|
||||
motionEvent,
|
||||
mTargetCoordinates));
|
||||
}
|
||||
|
||||
List<ViewTarget> leaveViewTargets =
|
||||
|
||||
Reference in New Issue
Block a user