Added in API level 26
  
  
  
  
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
    Added in API level 26
  
      
  
    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. |