-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
Very clean library, thanks!
The call to notifyDataSetChanged interrupts the default onSwipe animations in RecyclerView
/**
* Swap the Cursor of the CursorAdapter and notify the RecyclerView.Adapter that data has
* changed.
* @param cursor The new Cursor representation of the data to be displayed.
*/
public void swapCursor(Cursor cursor) {
this.mCursorAdapter.swapCursor(cursor);
notifyDataSetChanged();
}I was able to get it working using guidance from the answer in this post:
No modifications of your library are needed, but it might be good to provide info. on this in the documentation and maybe a sample that implements swipe.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels