Added in API level 26
    OnCapturedPointerListener
interface OnCapturedPointerListener
| android.view.View.OnCapturedPointerListener | 
Interface definition for a callback to be invoked when a captured pointer event is being dispatched this view. The callback will be invoked before the event is given to the view.
Summary
| Public methods | |
|---|---|
| abstract Boolean | onCapturedPointer(view: View!, event: MotionEvent!)Called when a captured pointer event is dispatched to a view. | 
Public methods
onCapturedPointer
Added in API level 26
      abstract fun onCapturedPointer(
view: View!,
event: MotionEvent!
): Boolean
Called when a captured pointer event is dispatched to a view.
| Parameters | |
|---|---|
| view | View!: The view this event has been dispatched to. | 
| event | MotionEvent!: The captured event. | 
| Return | |
|---|---|
| Boolean | True if the listener has consumed the event, false otherwise. | 
