public abstract class

SwipeResultAction

extends Object
java.lang.Object
   ↳ com.h6ah4i.android.widget.advrecyclerview.swipeable.action.SwipeResultAction
Known Direct Subclasses

Summary

Protected Constructors
SwipeResultAction(int resultAction)
Public Methods
int getResultActionType()
final void performAction()
final void slideAnimationEnd()
Protected Methods
void onCleanUp()
This method is called after the onSlideAnimationEnd() method.
void onPerformAction()
This method is called immediately after returning from the onSwipeItem(RecyclerView.ViewHolder, int, int) method.
void onSlideAnimationEnd()
This method is called when item slide animation has completed.
[Expand]
Inherited Methods
From class java.lang.Object

Protected Constructors

protected SwipeResultAction (int resultAction)

Public Methods

public int getResultActionType ()

public final void performAction ()

public final void slideAnimationEnd ()

Protected Methods

protected void onCleanUp ()

This method is called after the onSlideAnimationEnd() method. Clear fields to avoid memory leaks.

protected void onPerformAction ()

This method is called immediately after returning from the onSwipeItem(RecyclerView.ViewHolder, int, int) method. You can modify data set and call notifyXXX() methods of adapter in this method.

protected void onSlideAnimationEnd ()

This method is called when item slide animation has completed.