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.

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2025-02-10 UTC.