Most visited

Recently visited

SwipeDismissBehavior.OnDismissListener

public static interface SwipeDismissBehavior.OnDismissListener

android.support.design.widget.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 view has been dismissed via swiping.

abstract void onDragStateChanged(int state)

Called when the drag state has changed.

Public methods

onDismiss

void onDismiss (View view)

Called when view has been dismissed via swiping.

Parameters
view View

onDragStateChanged

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.

Hooray!