原文首發於微信公眾號:jzman-blog,歡迎關注交流!
AppBarLayout 是一個垂直方向的 LinearLayout,它實現了許多符合 Material Design 設計規範的狀態列應該具有的功能,比如滾動手勢。
AppBarLayout 一般直接用作 CoordinatorLayout 的直接子物件,如果 AppBarLayout 在別的佈局中使用,其大部分功能會失效,AppBarLayout 需要一個標示才能夠知道滾動檢視什麼時候滾動,這個標示過程是通過繫結 AppBarLayout.ScrollingViewBehavior 類完成的,這意味著應該將滾動檢視的行為設定為 AppBarLayout.ScrollingViewBehavior的一個例項,這裡設定包含完整類名的字串資源,具體如下:
//設定layout_behavior屬性
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<!-- Your scrolling content -->
</android.support.v4.widget.NestedScrollView>
複製程式碼
AppBarLayout 的子 View 應該設定一個可供滾動的 behavior,可以通過程式碼和 xml 屬性設定,具體如下:
//程式碼
setScrollFlags(int)
//xml attribute
app:layout_scrollFlags
複製程式碼
layout_scrollFlags 屬性主要是指定 AppBarLayout 子 View 當滑動手勢變化時,AppBarLayout 的子 View 執行什麼動作,layout_scrollFlags 屬性有 5 個值,分別是:
- scroll
- enterAlways
- enterAlwaysCollapsed
- exitUntilCollapsed
- snap
在介紹這幾個屬性值之前,這些屬性值的效果將以下面佈局效果為例,佈局如下:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.manu.materialdesignsamples.samples.SampleCoordinatorAppBarActivity">
<!--AppBarLayout——>子View設定layout_scrollFlags屬性-->
<android.support.design.widget.AppBarLayout
android:id="@+id/ablBar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="70dp"
android:minHeight="?attr/actionBarSize"
app:layout_scrollFlags="scroll">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<!--NestedScrollView——>設定layout_behavior屬性-->
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:id="@+id/rvAppBarData"
android:clipToPadding="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
複製程式碼
scroll: 當設定 layout_scrollFlags 的屬性為如下時:
app:layout_scrollFlags="scroll"
複製程式碼
此時,上滑時先隱藏 AppBarLayout,然後再開始滾動,下滑時直到滾動檢視的頂部出現 AppBarLayout 才開始顯示,效果如下:
enterAlways: enterAlways 必須配合 scroll 來使用,當設定 layout_scrollFlags 屬性為如下時:
app:layout_scrollFlags="scroll|enterAlways"
複製程式碼
此時,上滑時先隱藏AppBarLayout,然後再開始滾動,下滑時先顯示AppBarLayout,然後再開始滾動,效果如下:
enterAlwaysCollapsed: 使用 enterAlwaysCollapsed 屬性值時,必須配合 scroll 和 enterAlways 來使用,此外還需設定 AppBarLayout 的子 View (這裡是 Toolbar)一個最小高度 來提供 enterAlwaysCollapsed 的功能支援,當設定 layout_scrollFlags 的屬性為如下時:
app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed"
複製程式碼
此時,上滑時先隱藏AppBarLayout,然後再開始滾動,下滑時 AppBarLayout 先顯示子 View 最小高度,然後直到滾動檢視的頂部出現 AppBarLayout 全部顯示,效果如下:
exitUntilCollapsed: 使用 exitUntilCollapsed 屬性值時,必須配合 scroll 來使用,此外還需設定 AppBarLayout 的子 View (這裡是 Toolbar)一個最小高度 來提供 exitUntilCollapsed 的功能支援,當設定 layout_scrollFlags 的屬性為如下時:
app:layout_scrollFlags="scroll|exitUntilCollapsed"
複製程式碼
此時,上滑時先隱藏 AppBarLayout 至最小高度,然後再開始滾動,下滑時直到滾動檢視的頂部出現 AppBarLayout 才開始顯示,效果如下:
snap: 使用 snap 屬性值時,必須配合 scroll 來使用,主要作用是在滾動結束時,如果伸縮的檢視只是部分可見,那麼它將自動滾動到最近的邊緣,當設定 layout_scrollFlags 屬性為如下時:
app:layout_scrollFlags="scroll|snap"
複製程式碼
此時,伸縮的檢視(這裡是 Toolbar)如果部分可見,那麼伸縮的檢視將自動滾動到最近的邊緣,即要麼隱藏、要麼顯示,效果如下:
關於 layout_scrollFlags 屬性就介紹完了,當然上面只是為了說明屬性值的效果,還可以結合 CollapsingToolbarLayout 等其他 Material Design 實現酷炫的效果,上面是在佈局檔案對 layout_scrollFlags 屬性的設定,順便說一下如何在程式碼中設定 layout_scrollFlags 呢,具體如下:
AppBarLayout.LayoutParams params = (AppBarLayout.LayoutParams) appBarLayout
.getChildAt(0).getLayoutParams();
//上滑時先隱藏AppBarLayout,然後再開始滾動,下滑時先顯示AppBarLayout,然後再開始滾動
params.setScrollFlags(
AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL |
AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS);
//...
複製程式碼
AppBarLayout 的使用及其重要屬性已經介紹完了,實際開發中肯定要複雜的多,希望上面的內容能夠對你有所幫助。可以選擇關注個人微信公眾號:jzman-blog 獲取最新更新,一起交流學習!