timusus / RecyclerView-FastScroll

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

Not support StaggeredGridLayoutManager #46

Closed by-syk closed 7 years ago

by-syk commented 7 years ago

LinearLayoutManager and GridLayoutManager are OK, but StaggeredGridLayoutManager is not. The error occurs here: com.simplecityapps.recyclerview_fastscroll.views.FastScrollRecyclerView

...
LinearLayoutManager layoutManager = ((LinearLayoutManager) getLayoutManager());
...
timusus commented 7 years ago

As per the readme:

Supports vertical RecyclerViews using either LinearLayoutManager or GridLayoutManager (including multiple spans).

Sorry, other layout managers are not supported. Taking pull requests though, so if you'd like to figure it out..

by-syk commented 7 years ago

Got it. Thanks.