-
public interface OnInterceptTouchEventListenerInterface definition for a callback to be invoked when a onInterceptTouch is called on a .
-
-
Method Summary
Modifier and Type Method Description abstract booleanonInterceptTouchEvent(ViewGroup v, MotionEvent event)Called when a onInterceptTouch is invoked on a view group -
-
Method Detail
-
onInterceptTouchEvent
abstract boolean onInterceptTouchEvent(ViewGroup v, MotionEvent event)
Called when a onInterceptTouch is invoked on a view group
- Parameters:
v- The view group the onInterceptTouch has been called onevent- The motion event being dispatched down the hierarchy.
-
-
-
-