ksoichiro / Android-ObservableScrollView

Android library to observe scroll events on scrollable views.
http://ksoichiro.github.io/Android-ObservableScrollView/
Apache License 2.0
9.65k stars 2.06k forks source link

Save current scroll position and restore that #253

Open pishguy opened 8 years ago

pishguy commented 8 years ago

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