public static interface

RecyclerViewSwipeManager.OnItemSwipeEventListener

com.h6ah4i.android.widget.advrecyclerview.swipeable.RecyclerViewSwipeManager.OnItemSwipeEventListener

Class Overview

Used for listening item swipe events

Summary

Public Methods
abstract void onItemSwipeFinished(int position, int result, int afterSwipeReaction)
Callback method to be invoked when swiping is finished.
abstract void onItemSwipeStarted(int position)
Callback method to be invoked when swiping is started.

Public Methods

public abstract void onItemSwipeFinished (int position, int result, int afterSwipeReaction)

Callback method to be invoked when swiping is finished.

Parameters
position The position of the item.
result The result code of the swipe operation.
afterSwipeReaction The reaction type to the swipe operation.

public abstract void onItemSwipeStarted (int position)

Callback method to be invoked when swiping is started.

Parameters
position The position of the item.