Search code examples
androidscrollandroid-recyclerview

How to save scroll position of RecyclerView in Android?


I have Recycler view which lays inside of SwipeRefreshLayout. Also, have ability to open each item in another activity. After returning back to Recycler I need scroll to chosen item, or to previous Y. How to do that?

Yes, I googled, found articles in StackOverFlow about saving instance of layout manager, like this one: RecyclerView store / restore state between activities. But, it doesn't help me.

UPDATE

Right now I have this kind of resolving problem, but, of course, it also doesn't work.

private int scrollPosition;

...//onViewCreated - it is fragment
recyclerView.setHasFixedSize(true);
LinearLayoutManager llm = new LinearLayoutManager(getActivity());
recyclerView.setLayoutManager(llm);
data = new ArrayList<>();
adapter.setData(getActivity(), data);
recyclerView.setAdapter(adapter);
...

@Override
public void onResume() {
    super.onResume();
    recyclerView.setScrollY(scrollPosition);
}

@Override
public void onPause() {
    super.onPause();
    scrollPosition = recyclerView.getScrollY();
}

Yes, I have tried scrollTo(int, int) - doen't work.

Now I tried just scroll, for example, to Y = 100, but it doesn't scrolling at all.


Solution

  • Save the current state of recycle view position @onPause:

        positionIndex= llManager.findFirstVisibleItemPosition();
        View startView = rv.getChildAt(0);
        topView = (startView == null) ? 0 : (startView.getTop() - rv.getPaddingTop());
    

    Restore the scroll position @onResume:

        if (positionIndex!= -1) {
            llManager.scrollToPositionWithOffset(positionIndex, topView);
        }
    

    or another way can be @onPause:

    long currentVisiblePosition = 0;
    currentVisiblePosition = ((LinearLayoutManager)rv.getLayoutManager()).findFirstCompletelyVisibleItemPosition();
    

    restore @onResume:

    ((LinearLayoutManager) rv.getLayoutManager()).scrollToPosition(currentVisiblePosition);
    currentVisiblePosition = 0;