-
public interface RootView
Interface for the root native view of a React native application.
-
-
Method Summary
Modifier and Type Method Description abstract void
onChildStartedNativeGesture(View childView, MotionEvent ev)
Called when a child starts a native gesture (e.g. abstract void
onChildStartedNativeGesture(MotionEvent ev)
abstract void
onChildEndedNativeGesture(View childView, MotionEvent ev)
Called when a child ends a native gesture. abstract void
handleException(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)
-
-
-
-