SwipeDismissBehavior.OnDismissListener
public
static
interface
SwipeDismissBehavior.OnDismissListener
com.google.android.material.behavior.SwipeDismissBehavior.OnDismissListener |
Callback interface used to notify the application that the view has been dismissed.
Summary
Public methods | |
---|---|
abstract
void
|
onDismiss(View view)
Called when |
abstract
void
|
onDragStateChanged(int state)
Called when the drag state has changed. |
Public methods
onDismiss
public abstract void onDismiss (View view)
Called when view
has been dismissed via swiping.
Parameters | |
---|---|
view |
View |
onDragStateChanged
public abstract void onDragStateChanged (int state)
Called when the drag state has changed.
Parameters | |
---|---|
state |
int : the new state. One of SwipeDismissBehavior.STATE_IDLE , SwipeDismissBehavior.STATE_DRAGGING or SwipeDismissBehavior.STATE_SETTLING .
|