Package icyllis.modernui.view
Interface View.OnDragListener
- Enclosing class:
View
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
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.
-
Method Summary
-
Method Details
-
onDrag
Called when a drag event is dispatched to a view. This allows listeners to get a chance to override base View behavior.- Parameters:
v
- The View that received the drag event.event
- TheDragEvent
object for the drag event.- Returns:
true
if the drag event was handled successfully, orfalse
if the drag event was not handled. Note thatfalse
will trigger the View to call itsonDragEvent()
handler.
-