RecyclerView scroll position not changing and shows items from begining while config changes

381 Views Asked by At

I have some data loaded from API call in AsyncTaskLoader. Everything is good but when screen rotates the scroll position goes to first as the adapter is set again on config changes( But the API call is not made as it's a Loader). I tried saving scroll position as suggested in the following links

link 1

I saved the the scroll state in onSavedInstanceState() and restored it on onRestoreInstanceState() also tried in onPause() and onResume() but the recyclerview always shows items from first position when rotating the screen.

Here is code to save and restore the scroll state in my app

@Override
protected void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
    outState.putParcelable(LIST_STATE, mMoviesListRecycler.getLayoutManager().onSaveInstanceState());


}

@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
    super.onRestoreInstanceState(savedInstanceState);
    listScroll=savedInstanceState.getParcelable(LIST_STATE);
   mMoviesListRecycler.getLayoutManager().onRestoreInstanceState(listScroll);
}
0

There are 0 best solutions below