Search code examples
androidandroid-recyclerviewandroid-scrollview

How to reset position ScrollView inside RecycleView everytime RecycleView Scrolled


I have a RecycleView scroll Horizontal and every item of it has a ScrollView scroll Vertical. When I scroll down the ScrollView,it will remember that position and doesn't reset to the top when i scroll the RecycleView to another item,like this :

enter image description here

Could anyone give me an advice to make the ScrollView reset to the top when i scroll the RecycleView ?


Solution

  • Call this, when you detect scrolling the RecyclerView

    yourScrollView.fullScroll(ScrollView.FOCUS_UP);