SwipeDismissFrameLayout.Callback

Added in 1.1.0

@UiThread
public abstract class SwipeDismissFrameLayout.Callback


Implement this callback to act on particular stages of the dismissal.

Summary

Public constructors

Public methods

void

Notifies listeners that the dismissal is complete and the view is now off screen.

void

Notifies listeners that the swipe gesture has ended without a dismissal.

void

Notifies listeners that the view is now being dragged as part of a dismiss gesture.

Public constructors

Callback

Added in 1.1.0
public Callback()

Public methods

onDismissed

Added in 1.1.0
public void onDismissed(SwipeDismissFrameLayout layout)

Notifies listeners that the dismissal is complete and the view is now off screen.

Parameters
SwipeDismissFrameLayout layout

The layout associated with this callback.

onSwipeCanceled

Added in 1.1.0
public void onSwipeCanceled(SwipeDismissFrameLayout layout)

Notifies listeners that the swipe gesture has ended without a dismissal.

Parameters
SwipeDismissFrameLayout layout

The layout associated with this callback.

onSwipeStarted

Added in 1.1.0
public void onSwipeStarted(SwipeDismissFrameLayout layout)

Notifies listeners that the view is now being dragged as part of a dismiss gesture.

Parameters
SwipeDismissFrameLayout layout

The layout associated with this callback.