@@ -8,6 +8,7 @@ import android.view.ViewConfiguration
8
8
import android.widget.FrameLayout
9
9
import androidx.viewpager2.widget.ViewPager2
10
10
import androidx.viewpager2.widget.ViewPager2.ORIENTATION_HORIZONTAL
11
+ import com.facebook.react.uimanager.events.NativeGestureUtil
11
12
import kotlin.math.absoluteValue
12
13
import kotlin.math.sign
13
14
@@ -27,6 +28,7 @@ class NestedScrollableHost : FrameLayout {
27
28
private var touchSlop = 0
28
29
private var initialX = 0f
29
30
private var initialY = 0f
31
+ private var nativeGestureStarted: Boolean = false
30
32
private val parentViewPager: ViewPager2 ?
31
33
get() {
32
34
var v: View ? = parent as ? View
@@ -57,17 +59,14 @@ class NestedScrollableHost : FrameLayout {
57
59
}
58
60
59
61
private fun handleInterceptTouchEvent (e : MotionEvent ) {
60
- val orientation = parentViewPager?.orientation ? : return
61
-
62
- // Early return if child can't scroll in same direction as parent
63
- if (! canChildScroll(orientation, - 1f ) && ! canChildScroll(orientation, 1f )) {
64
- return
65
- }
62
+ val orientation = parentViewPager?.orientation
66
63
67
64
if (e.action == MotionEvent .ACTION_DOWN ) {
68
65
initialX = e.x
69
66
initialY = e.y
70
- parent.requestDisallowInterceptTouchEvent(true )
67
+ if (orientation != null ) {
68
+ parent.requestDisallowInterceptTouchEvent(true )
69
+ }
71
70
} else if (e.action == MotionEvent .ACTION_MOVE ) {
72
71
val dx = e.x - initialX
73
72
val dy = e.y - initialY
@@ -78,6 +77,10 @@ class NestedScrollableHost : FrameLayout {
78
77
val scaledDy = dy.absoluteValue * if (isVpHorizontal) 1f else .5f
79
78
80
79
if (scaledDx > touchSlop || scaledDy > touchSlop) {
80
+ NativeGestureUtil .notifyNativeGestureStarted(this , e)
81
+ nativeGestureStarted = true
82
+
83
+ if (orientation == null ) return
81
84
if (isVpHorizontal == (scaledDy > scaledDx)) {
82
85
// Gesture is perpendicular, allow all parents to intercept
83
86
parent.requestDisallowInterceptTouchEvent(false )
@@ -94,4 +97,14 @@ class NestedScrollableHost : FrameLayout {
94
97
}
95
98
}
96
99
}
100
+
101
+ override fun onTouchEvent (e : MotionEvent ): Boolean {
102
+ if (e.actionMasked == MotionEvent .ACTION_UP ) {
103
+ if (nativeGestureStarted) {
104
+ NativeGestureUtil .notifyNativeGestureEnded(this , e)
105
+ nativeGestureStarted = false
106
+ }
107
+ }
108
+ return super .onTouchEvent(e)
109
+ }
97
110
}
0 commit comments