All Projects → L4Digital → Fastscroll

L4Digital / Fastscroll

A ListView-like FastScroller for Android’s RecyclerView.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Fastscroll

Swiperecyclerview
🍈 RecyclerView侧滑菜单,Item拖拽,滑动删除Item,自动加载更多,HeaderView,FooterView,Item分组黏贴。
Stars: ✭ 5,174 (+598.25%)
Mutual labels:  recyclerview
Zoomrecylerlayout
🎢 Zoom Recycler Layout Manager For Android Kotlin
Stars: ✭ 618 (-16.6%)
Mutual labels:  recyclerview
Gallerylayoutmanager
New way to implements ViewPager/Gallery in Android with RecycleView
Stars: ✭ 684 (-7.69%)
Mutual labels:  recyclerview
Android Advancedrecyclerview
RecyclerView extension library which provides advanced features. (ex. Google's Inbox app like swiping, Play Music app like drag and drop sorting)
Stars: ✭ 5,172 (+597.98%)
Mutual labels:  recyclerview
Xrecyclerview
A RecyclerView that implements pullrefresh and loadingmore featrues.you can use it like a standard RecyclerView
Stars: ✭ 5,269 (+611.07%)
Mutual labels:  recyclerview
Superadapter
[Deprecated]. 🚀 Adapter(BaseAdapter, RecyclerView.Adapter) wrapper for Android. 一个Adapter同时适用RecyclerView、ListView、GridView等。
Stars: ✭ 638 (-13.9%)
Mutual labels:  recyclerview
Android Zblibrary
🔥Android MVP 快速开发框架,做国内 「示例最全面」「注释最详细」「使用最简单」「代码最严谨」的 Android 开源 UI 框架。 🔥An Android MVP Framework with many demos, detailed documents, simple usages and strict codes.
Stars: ✭ 5,000 (+574.76%)
Mutual labels:  recyclerview
Timetablelayout
TimetableLayout is a RecyclerView.LayoutManager to display the timetable for Android.
Stars: ✭ 726 (-2.02%)
Mutual labels:  recyclerview
Easyxrecyclerview
主要提供了简单易用强大的RecyclerView库,包括自定义刷新加载效果、极简通用的万能适配器Adapter、万能分割线、多种分组效果、常见状态页面、item动画效果、添加多个header和footer、侧滑、拖拽、Sticky(黏性)效果、多item布局等,各模块之间灵活、解耦、通用、又能相互组合使用。
Stars: ✭ 607 (-18.08%)
Mutual labels:  recyclerview
Smartrecom
一款基于行为识别和个性化推荐的智能推荐APP,实时为你推荐音乐和电影,让你的生活更休闲,更精彩!
Stars: ✭ 663 (-10.53%)
Mutual labels:  recyclerview
Awesome Recyclerview Layoutmanager
RecyclerView-LayoutManager Resources
Stars: ✭ 581 (-21.59%)
Mutual labels:  recyclerview
Indicatorfastscroll
Android library providing a simple UI control for scrolling through RecyclerViews
Stars: ✭ 599 (-19.16%)
Mutual labels:  recyclerview
Recyclerviewhelper
📃 [Android Library] Giving powers to RecyclerView
Stars: ✭ 643 (-13.23%)
Mutual labels:  recyclerview
Multitype
Easier and more flexible to create multiple types for Android RecyclerView.
Stars: ✭ 5,298 (+614.98%)
Mutual labels:  recyclerview
Windowimageview
An ImageView display in RecyclerView, looks like window.
Stars: ✭ 699 (-5.67%)
Mutual labels:  recyclerview
Baserecyclerviewadapterhelper
BRVAH:Powerful and flexible RecyclerAdapter
Stars: ✭ 22,524 (+2939.68%)
Mutual labels:  recyclerview
Discretescrollview
A scrollable list of items that centers the current element and provides easy-to-use APIs for cool item animations.
Stars: ✭ 5,533 (+646.69%)
Mutual labels:  recyclerview
Recyclercoverflow
使用RecyclerView,自定义LayoutManager实现旋转木马相册效果
Stars: ✭ 726 (-2.02%)
Mutual labels:  recyclerview
Searchable Recyclerview Demo
An example app using a SearchView to filter items in a RecyclerView while taking full advantage of item animations!
Stars: ✭ 706 (-4.72%)
Mutual labels:  recyclerview
Recyclical
🚀 An easy-to-use, extensible Kotlin DSL for setting up and manipulating RecyclerViews.
Stars: ✭ 660 (-10.93%)
Mutual labels:  recyclerview

FastScroll

License API Download

A ListView-like FastScroller for Android’s RecyclerView.

screenshot

FastScroll brings the popular fast scrolling and section indexing features of Android’s ListView to the RecyclerView with a Lollipop styled scrollbar and section “bubble” view. The scrollbar provides a handle for quickly navigating a list while the bubble view displays the currently visible section index.

FastScroll was inspired by this Styling Android blog post.

Download

Gradle:

dependencies {
    implementation 'com.l4digital.fastscroll:fastscroll:2.0.1'
}

Maven:

<dependency>
  <groupId>com.l4digital.fastscroll</groupId>
  <artifactId>fastscroll</artifactId>
  <version>2.0.1</version>
</dependency>

Usage

There are a few ways to implement the FastScroll library:

  • The FastScrollRecyclerView is a RecyclerView that creates and adds the FastScroller to its parent ViewGroup.

  • The FastScrollView is a layout that creates and manages a RecyclerView with a FastScroller. FastScrollView is particularly useful when the parent ViewGroup requires a single child view, for example a SwipeRefreshLayout.

FastScrollRecyclerView:

Add the FastScrollRecyclerView to your xml layout and set your customizations using attributes.

The parent ViewGroup must be a ConstraintLayout, CoordinatorLayout, FrameLayout, or RelativeLayout in order for the FastScroller to be properly displayed on top of the RecyclerView.

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.l4digital.fastscroll.FastScrollRecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:bubbleColor="#00bb00"
        app:bubbleTextColor="#ffffff"
        app:handleColor="#999999" />

</FrameLayout>

FastScrollRecyclerView extends Android's RecyclerView and can be setup the same way.

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_example)

    val recyclerView: FastScrollRecyclerView? = findViewById(R.id.recycler_view)
    recyclerView?.layoutManager = LinearLayoutManager(this)
    recyclerView?.adapter = ExampleAdapter()
}

Implement the FastScroller.SectionIndexer interface in your RecyclerView Adapter and override getSectionText().

class ExampleAdapter : RecyclerView.Adapter<ExampleAdapter.ViewHolder>(), FastScroller.SectionIndexer {

    ...

    override fun getSectionText(position: Int): CharSequence {
        return getItem(position).getIndex()
    }
}

FastScrollView:

Add the FastScrollView to your xml layout and set your customizations using attributes.

<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.l4digital.fastscroll.FastScrollView
        android:id="@+id/fastscroll_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:bubbleColor="#00bb00"
        app:bubbleTextColor="#ffffff"
        app:handleColor="#999999" />

</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>

FastScrollView contains a RecyclerView and a FastScroller that can be accessed with public methods.

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_example)

    val fastScrollView: FastScrollView? = findViewById(R.id.fastscroll_view)
    fastScrollView?.setLayoutManager(LinearLayoutManager(this))
    fastScrollView?.setAdapter(ExampleAdapter())
}

Implement the FastScroller.SectionIndexer interface in your RecyclerView Adapter and override getSectionText().

class ExampleAdapter : RecyclerView.Adapter<ExampleAdapter.ViewHolder>(), FastScroller.SectionIndexer {

    ...

    override fun getSectionText(position: Int): CharSequence {
        return getItem(position).getIndex()
    }
}

Alternative Usage:

If you are unable to use the FastScrollRecyclerView or FastScrollView, you can add a FastScroller to your layout and implement with any RecyclerView. See this github issue for an example.

FastScrollListener:

An optional FastScrollListener can be added to receive messages when fast scrolling starts or stops.

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_example)

    val recyclerView: FastScrollRecyclerView? = findViewById(R.id.recycler_view)
    recyclerView?.setFastScrollListener(object : FastScroller.FastScrollListener {
        override fun onFastScrollStart(fastScroller: FastScroller) {
            // fast scroll started
        }

        override fun onFastScrollStop(fastScroller: FastScroller) {
            // fast scroll stopped
        }
    })
}

Customization

The following attributes can be set to customize the visibility and appearance of the elements within the FastScroller view:

  • app:hideScrollbar=["true" | "false"] Hides the scrollbar when not scrolling
  • app:showBubble=["true" | "false"] Shows the section bubble while scrolling
  • app:showTrack=["true" | "false"] Shows the scroll track while scrolling
  • app:handleColor=["#rrggbb" | "@color"] Sets the color of the scroll handle
  • app:trackColor=["#rrggbb" | "@color"] Sets the color of the scroll track
  • app:bubbleColor=["#rrggbb" | "@color"] Sets the background color of the section bubble
  • app:bubbleSize=["normal" | "small"] Sets the size of the section bubble
  • app:bubbleTextColor=["#rrggbb" | "@color"] Sets the text color of the section bubble
  • app:bubbleTextSize=["sp" | "@dimen"] Sets the scaled pixel text size of the section bubble

License

Copyright 2018 L4 Digital. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].