recyclerview-playground
recyclerview-playground copied to clipboard
Refreshing data in RecyclerView and keeping its scroll position?
// Save state
private Parcelable recyclerViewState;
recyclerViewState = recyclerView.getLayoutManager().onSaveInstanceState();
// Restore state
recyclerView.getLayoutManager().onRestoreInstanceState(recyclerViewState);
FixedGridLayoutManager onSaveInstanceState and onRestoreInstanceState does not implement
could you please implement this feature? @devunwired