-
public interface RootViewInterface for the root native view of a React native application.
-
-
Method Summary
Modifier and Type Method Description abstract voidonChildStartedNativeGesture(View childView, MotionEvent ev)Called when a child starts a native gesture (e.g. abstract voidonChildStartedNativeGesture(MotionEvent ev)abstract voidonChildEndedNativeGesture(View childView, MotionEvent ev)Called when a child ends a native gesture. abstract voidhandleException(Throwable t)-
-
Method Detail
-
onChildStartedNativeGesture
abstract void onChildStartedNativeGesture(View childView, MotionEvent ev)
Called when a child starts a native gesture (e.g. a scroll in a ScrollView). Should be calledfrom the child's onTouchIntercepted implementation.
-
onChildStartedNativeGesture
abstract void onChildStartedNativeGesture(MotionEvent ev)
-
onChildEndedNativeGesture
abstract void onChildEndedNativeGesture(View childView, MotionEvent ev)
Called when a child ends a native gesture. Should be called from the child's onTouchInterceptedimplementation.
-
handleException
abstract void handleException(Throwable t)
-
-
-
-