devunwired / recyclerview-playground

Examples of RecyclerView use and custom LayoutManager implementations
MIT License
1.25k stars 270 forks source link

Refreshing data in RecyclerView and keeping its scroll position? #35

Open bravekingzhang opened 5 years ago

bravekingzhang commented 5 years ago
// Save state
private Parcelable recyclerViewState;
recyclerViewState = recyclerView.getLayoutManager().onSaveInstanceState();

// Restore state
recyclerView.getLayoutManager().onRestoreInstanceState(recyclerViewState);

FixedGridLayoutManager onSaveInstanceState and onRestoreInstanceState does not implement

bravekingzhang commented 5 years ago

could you please implement this feature? @devunwired