Fast scroll for Android RecyclerView and more
AndroidFastScroll
Fast scroll for Android RecyclerView and more.
This is not an officially supported Google product.
Why AndroidFastScroll?
- Fully customizable: Override track, thumb, popup, animation and scrolling.
- Easy-to-use defaults: Predefined default style, Material Design 2 style and animation.
- Extensive view support: Out-of-box support for
RecyclerView
,ScrollView
,NestedScrollView
andWebView
, plus any view with aViewHelper
implementation. - Window insets friendly: Support setting a separate padding for scrollbar.
- Clean implementation: Decoupled touch handling, animation and scrolling logic.
Implementation
This library is loosely based on the following AOSP implementations:
- Framework
ListView
FastScroller
. - AndroidX
RecyclerView
FastScroller
. - Launcher3
RecyclerViewFastScroller
.
Integration
Gradle:
implementation 'me.zhanghai.android.fastscroll:library:1.0.0'
Usage
Simply create a FastScroller
with FastScrollerBuilder
, and enjoy!
new FastScrollerBuilder(recyclerView).build();
You can also implement PopupTextProvider
in your RecyclerView.Adapter
to show a popup.
For more customization, please use the methods on FastScrollerBuilder
. Namely:
setViewHelper()
allows providing a customViewHelper
to support more views.setPadding()
allows setting a custom padding for the scrollbar, instead of the padding of the view.setTrackDrawable()
andsetThumbDrawable()
allow setting custom drawables for the scrollbar. Theandroid:state_pressed
state will be updated for them so you can use a selector.setPopupStyle()
allows customizing the popup view with a lambda that will receive the view.setAnimationHelper()
allows providing a customAnimationHelper
to use an alternative scrollbar animation.disableScrollbarAutoHide()
allows disabling the auto hide animation for scrollbar. This implies using aDefaultAnimationHelper
.useDefaultStyle()
anduseMd2Style()
allow using the predefined styles, which sets the drawables and popup style.useDefaultStyle()
, as its name suggests, is the default style when aFastScrollerBuilder
is created.
The default ViewHelper
implementation for RecyclerView
supports both LinearLayoutManager
and GridLayoutManager
, but assumes that each item has the same height when calculating scroll, as there's no common way to deal with variable item height. If you know how to measure for scrolling in your specific case, you can provide your own ViewHelper
implementation and fast scroll will work correctly again.
If you are using any RecyclerView.ItemDecoration
that implements onDrawOver()
, you might be interested in FixItemDecorationRecyclerView
which can fix the drawing order.
You can also refer to the sample app source for how things like window insets and lift on scroll are implemented.