簡(jiǎn)評(píng):Android Support Library 26 中終于實(shí)現(xiàn)了一個(gè)等待已久的功能:RecyclerView 的快速滾動(dòng)。
Android 官方早就在建議開(kāi)發(fā)者使用 RecyclerView 替代 ListView烤镐,RecyclerView 也確實(shí)表現(xiàn)要好于 ListView,除了沒(méi)有快速滾動(dòng)继效,就像下面這樣:
因此,之前要想在 RecyclerView 上實(shí)現(xiàn)快速滾動(dòng),往往是依賴第三方庫(kù),比如:FutureMind/recycler-fast-scroll或timusus/RecyclerView-FastScroll憔足。
現(xiàn)在 RecyclerView 終于原生支持了快速滾動(dòng)胁附,現(xiàn)在就讓我們來(lái)看一下怎么實(shí)現(xiàn):
首先,在 build.gradle 中添加依賴:
dependencies {
....
compile 'com.android.support:design:26.0.2'
compile 'com.android.support:recyclerview-v7:26.0.2'
....
}
注意 Support Library 從版本 26 開(kāi)始移到了 Google 的 maven 倉(cāng)庫(kù)滓彰,并且 Google 計(jì)劃未來(lái)將所有的倉(cāng)庫(kù)都只通過(guò)maven.google.com來(lái)發(fā)布控妻。所以,需要參考官方指南使用 Google Maven 倉(cāng)庫(kù)揭绑。
現(xiàn)在弓候,來(lái)看一看具體怎么實(shí)現(xiàn) RecyclerView 的快速滾動(dòng):
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.shaishavgandhi.fastscrolling.MainActivity"
tools:showIn="@layout/activity_main">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:fastScrollEnabled="true"
app:fastScrollHorizontalThumbDrawable="@drawable/thumb_drawable"
app:fastScrollHorizontalTrackDrawable="@drawable/line_drawable"
app:fastScrollVerticalThumbDrawable="@drawable/thumb_drawable"
app:fastScrollVerticalTrackDrawable="@drawable/line_drawable">
</android.support.v7.widget.RecyclerView>
</android.support.constraint.ConstraintLayout>
其中增加了幾個(gè)屬性:
fastScrollEnabled:boolean 類型,決定是否啟用快速滾動(dòng)他匪,當(dāng)設(shè)置為 true 時(shí)需要設(shè)置下面的四個(gè)屬性弓叛。
fastScrollHorizontalThumbDrawable:水平滾動(dòng)塊。
fastScrollHorizontalTrackDrawable:水平滾動(dòng)欄背景诚纸。
fastScrollVerticalThumbDrawable:豎直滾動(dòng)塊。
fastScrollVerticalTrackDrawable:豎直滾動(dòng)欄背景陈惰。
接下來(lái)看一下具體的 drawable:
line_drawable.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:drawable="@drawable/line"/>
<item
android:drawable="@drawable/line"/>
</selector>
line.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/darker_gray" />
<padding
android:top="10dp"
android:left="10dp"
android:right="10dp"
android:bottom="10dp"/>
</shape>
thumb_drawable.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:drawable="@drawable/thumb"/>
<item
android:drawable="@drawable/thumb"/>
</selector>
thumb.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:topLeftRadius="44dp"
android:topRightRadius="44dp"
android:bottomLeftRadius="44dp" />
<padding
android:paddingLeft="22dp"
android:paddingRight="22dp" />
<solid android:color="@color/colorPrimaryDark" />
</shape>
效果如下:
原文:Fast Scrolling with RecyclerView
擴(kuò)展閱讀:
現(xiàn)代 Android 開(kāi)發(fā)資源匯總
為什么 Android 開(kāi)發(fā)者都應(yīng)該嘗試一下 Anko畦徘?