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