timusus / RecyclerView-FastScroll

A simple FastScroller for Android's RecyclerView
Other
1.39k stars 182 forks source link

Scroll not working in Nested Scroll view #92

Closed rajan051 closed 5 years ago

rajan051 commented 6 years ago

I have one nested scroll view with two recycle view,one vertical & one horizontal. in vertical recycle view i implemented this library. but it wont work.

timusus commented 5 years ago

RecyclerView-FastScroll is not supported inside NestedScrollViews. When you place a RecyclerView inside a NestedScrollView, the RecyclerView's height expands to the height of all of its items. When you scroll, you're not really scrolling the RecyclerView anymore, you're scrolling the NestedScrollView. This makes it impossible to determine what the position of the FastScroll thumb should be (how far the RecyclerView has scrolled, since technically it hasn't scrolled at all).