AppBarLayout

一嗦明、簡介

  • AppBarLayout 是 Design Support 庫中提供的一個控件,它是一個垂直方向的 LinearLayout ,它的內(nèi)部做了很多滾動事件的封裝旗闽,并應用了一些 Material Design 的設計理念匾鸥!

二蜡塌、簡單使用

  • AppBarLayout 一般是配合 CoordinatorLayout 來使用,實現(xiàn)一些 Material Design 效果勿负,CoordinatorLayout 是一個加強版的 FrameLayout馏艾,在 CoordinatorLayout 下添加控件會出現(xiàn)覆蓋的情況,因為 FrameLayout 默認都是從屏幕的左上角開始添加控件奴愉,如果加上 AppBarLayout 的話琅摩,就會避免這種覆蓋的情況,并實現(xiàn)一些 Material Design 效果锭硼!
2.1 添加 Design Support 的依賴
dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'

    compile 'com.android.support:design:25.3.1'
    
}
2.2 使用 CoodinatorLayout 而不使用 AppBarLayout 的情況
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:fresco="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">


            <!--標題欄-->
            <android.support.v7.widget.Toolbar
                
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/colorPrimaryDark"
                android:fitsSystemWindows="true"
                android:minHeight="?attr/actionBarSize"
                android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

                <!--自定義控件-->
                <TextView
                    android:id="@+id/toolbar_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerInParent="true"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:text="FloatingActionButton"
                    android:textSize="20dp"
                    android:textStyle="bold" />

            </android.support.v7.widget.Toolbar>
        <!--RecyclerView-->
        <android.support.v7.widget.RecyclerView
           
            android:id="@+id/recycler_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@id/toolbar"></android.support.v7.widget.RecyclerView>
        <!--FloatingActionButton-->

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/floating"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|end"
            android:layout_margin="16dp"
            android:src="@drawable/floating_icon"
            app:fabSize="normal"
            app:pressedTranslationZ="10dp"
            app:rippleColor="@color/colorAccent"

            />

    </android.support.design.widget.CoordinatorLayout>


</RelativeLayout>

  • 運行結果如下:


    image

發(fā)現(xiàn): RecyclerView 將 Toolbar 覆蓋掉了房资,而且也很難看,這時候就需要 AppBarLayout 來協(xié)調(diào)這些個關系

2.3 CooldinatorLayout 和 AppBarLayout 配合使用
  • 在布局文件中檀头,將 Toolbar 包裹在 AppBarlayout 之內(nèi)轰异,并給 RecyclerView 指定個布局行為

  • 修改后的布局文件如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:fresco="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
            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="wrap_content"
                android:background="@color/colorPrimaryDark"
                android:fitsSystemWindows="true"
                android:minHeight="?attr/actionBarSize"
                android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

                <!--自定義控件-->
                <TextView
                    android:id="@+id/toolbar_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerInParent="true"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:text="FloatingActionButton"
                    android:textSize="20dp"
                    android:textStyle="bold" />

            </android.support.v7.widget.Toolbar>
        </android.support.design.widget.AppBarLayout>
        <!-- app:layout_behavior="@string/appbar_scrolling_view_behavior" 指定一個布局行為-->
        <!--RecyclerView-->
        <android.support.v7.widget.RecyclerView
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:id="@+id/recycler_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@id/toolbar"></android.support.v7.widget.RecyclerView>
        <!--FloatingActionButton-->

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/floating"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|end"
            android:layout_margin="16dp"
            android:src="@drawable/floating_icon"
            app:fabSize="normal"
            app:pressedTranslationZ="10dp"
            app:rippleColor="@color/colorAccent"

            />

    </android.support.design.widget.CoordinatorLayout>


</RelativeLayout>

  • 運行結果如下


    image
  • 顯示結果正常

2.4 添加 Material Design 效果
2.4.1 當 AppBarLayout 收到滾動事件的時候岖沛,它內(nèi)部的子控件是可以指定如何去影響這些事件的,其實就是在 Toolbar 中添加一條屬性:app:layout_scrollFlags 搭独,一共有五個 Flag 可選婴削,在這里常用的有三個
  • scroll 表示向上滾動時,toolbar 會跟著一起向上滾動并隱藏

  • enterAlways 表示向下滾動時牙肝,toolbar 會跟著一起向下滾動并重新顯示

  • snap 表示當 toolbar 還沒有完全隱藏或顯示的時候唉俗,會根據(jù)當前滾動的距離,自動選擇隱藏或者顯示配椭。

最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末虫溜,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子股缸,更是在濱河造成了極大的恐慌衡楞,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件乓序,死亡現(xiàn)場離奇詭異寺酪,居然都是意外死亡,警方通過查閱死者的電腦和手機替劈,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門寄雀,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人陨献,你說我怎么就攤上這事盒犹。” “怎么了眨业?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵急膀,是天一觀的道長。 經(jīng)常有香客問我龄捡,道長卓嫂,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任聘殖,我火速辦了婚禮晨雳,結果婚禮上,老公的妹妹穿的比我還像新娘奸腺。我一直安慰自己餐禁,他們只是感情好,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布突照。 她就那樣靜靜地躺著帮非,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上末盔,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天筑舅,我揣著相機與錄音,去河邊找鬼庄岖。 笑死豁翎,一個胖子當著我的面吹牛角骤,可吹牛的內(nèi)容都是我干的隅忿。 我是一名探鬼主播,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼邦尊,長吁一口氣:“原來是場噩夢啊……” “哼背桐!你這毒婦竟也來了?” 一聲冷哼從身側響起蝉揍,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤链峭,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后又沾,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體弊仪,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年杖刷,在試婚紗的時候發(fā)現(xiàn)自己被綠了励饵。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡滑燃,死狀恐怖役听,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情表窘,我是刑警寧澤典予,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站乐严,受9級特大地震影響瘤袖,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜昂验,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一捂敌、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧凛篙,春花似錦黍匾、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至填物,卻和暖如春纹腌,著一層夾襖步出監(jiān)牢的瞬間霎终,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工升薯, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留莱褒,地道東北人。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓涎劈,卻偏偏與公主長得像广凸,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子蛛枚,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容