I'm using layout structure similar to Google Play
app. But in my case, I have fixed horizontal RecyclerView
containers so I prefer to use NestedScrollView
as the root view. Here is my layout structure
<NestedScrollView>
<HeaderView />
<RecyclerView />
<HeaderView />
<RecyclerView />
<HeaderView />
<RecyclerView />
</NestedScrollView>
The problem in that when I scroll vertically NestedScrollView
and when it flings I cannot immediately stop it and start scrolling RecyclerView
, I need to wait a minute until scroll stops, remove my finger, if it was on the screen, and then try to scroll RecyclerView
and vice verse when RecyclerView
is scrolling. How can I remove that scroll conflicts to make my layout scroll smooth like in Google Play
app?