# Print output for @column tags ?> View.OnCapturedPointerListener - Android SDK | Android Developers

Most visited

Recently visited

View.OnCapturedPointerListener

public static interface View.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, MotionEvent event)

Called when a captured pointer event is dispatched to a view.

Public methods

onCapturedPointer

public abstract boolean onCapturedPointer (View view, 
                MotionEvent event)

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.

Returns
boolean True if the listener has consumed the event, false otherwise.