ksoichiro/Android-ObservableScrollView

Save current scroll position and restore that

pishguy opened this issue · 0 comments

I'm trying to get and save current RecyclerView scroll position, by this code:

    @Override
    public void onScrollChanged(int scrollY, boolean firstScroll, boolean dragging) {
        recyclerViewCurrentScrolledPosition = scrollY;
    }

after get that i'm saving that into SharePreference and i try to set scroll position by this code:

recyclerMarketLists.scrollToPosition(recyclerViewCurrentScrolledPosition);

unfortunately its not working