Most visited

Recently visited

Added in API level 11

View.OnDragListener

public static interface View.OnDragListener

android.view.View.OnDragListener


Interface definition for a callback to be invoked when a drag is being dispatched to this view. The callback will be invoked before the hosting view's own onDrag(event) method. If the listener wants to fall back to the hosting view's onDrag(event) behavior, it should return 'false' from this callback.

Developer Guides

For a guide to implementing drag and drop features, read the Drag and Drop developer guide.

Summary

Public methods

abstract boolean onDrag(View v, DragEvent event)

Called when a drag event is dispatched to a view.

Public methods

onDrag

Added in API level 11
boolean onDrag (View v, 
                DragEvent event)

Called when a drag event is dispatched to a view. This allows listeners to get a chance to override base View behavior.

Parameters
v View: The View that received the drag event.
event DragEvent: The DragEvent object for the drag event.
Returns
boolean true if the drag event was handled successfully, or false if the drag event was not handled. Note that false will trigger the View to call its onDragEvent() handler.

Hooray!