SwipeDismissFrameLayout.Callback
@UiThread
public abstract class SwipeDismissFrameLayout.Callback
Implement this callback to act on particular stages of the dismissal.
Summary
Public constructors |
|---|
Callback() |
Public methods |
|
|---|---|
void |
onDismissed(SwipeDismissFrameLayout layout)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
Public methods
onDismissed
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
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
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. |