Android狀態(tài)欄總結

參考:
android沉浸式狀態(tài)欄超燃、fitsSystemWindows锭魔、標題欄折疊
android中的windowTranslucentStatus和fitsSystemWindows的作用
狀態(tài)欄顏色修改:白底黑字!Android淺色狀態(tài)欄黑色字體模式
Android DecorView淺析

現(xiàn)在大部分Android手機都是android4.4以上,都支持開發(fā)者可以自定義狀態(tài)欄色值,原來的黑底白字時代已過去举娩。在android5.0上我們還可以自定義狀態(tài)欄文字色值,讓其顯示深色字體构罗。

一铜涉、沉浸式狀態(tài)欄的實現(xiàn)

實現(xiàn)沉浸式狀態(tài)欄效果,一般有兩種方式:
1?設置系統(tǒng)主題遂唧,在styles.xml中設置芙代,在相應需要實現(xiàn)的界面里設置其android:theme主題。
需要根據(jù)不同機器版本設置多個styles.xml文件蠢箩。
下面是values-v21下的styles.xml—android5.0以上機器適用的主題

<style name="AppTheme" parent="AppTheme.Base">
        <item name="android:colorPrimary">@color/colorPrimary</item>
        <item name="android:colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="android:colorAccent">@color/colorAccent</item>
        <item name="android:windowDrawsSystemBarBackgrounds">false</item>
        <item name="android:windowTranslucentStatus">true</item>
</style>

在values-v19中的styles.xml中設置如下:

<style name="AppTheme"parent="@style/BaseAppTheme">
    <item name="android:windowTranslucentStatus">true</item>
</style>

而在values的styles.xml中則不設置任何屬性链蕊。

2?在代碼中設置界面,也需要區(qū)分不同的android版本
5.0以上并設置界面全屏谬泌,并設置狀態(tài)欄背景顏色滔韵,在4.4的機器上,則設置FLAG_TRANSLUCENT_STATUS屬性掌实。
具體設置代碼如下:

protected void setStatusBar() {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {//5.0及以上
            View decorView = getWindow().getDecorView();
            int option = View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
                    | View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
            decorView.setSystemUiVisibility(option);
            getWindow().setStatusBarColor(getResources().getColor(R.color.colorTheme));
        } else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {//4.4到5.0
            WindowManager.LayoutParams localLayoutParams = getWindow().getAttributes();
            localLayoutParams.flags = (WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS | localLayoutParams.flags);
        }
    }

若要背景圖也延伸到系統(tǒng)窗口陪蜻,一般通過將狀態(tài)欄設成透明色同蜻,這樣就可以實現(xiàn)背景圖延伸到狀態(tài)欄腋腮。
下面對以上用到的一些屬性進行歸納總結:

屬性 注意事項
windowTranslucentStatus 透明狀態(tài)欄(Android 4.4系統(tǒng)效果為透明狀態(tài),5.0及其以后系統(tǒng)效果為半透明狀態(tài))在styles.xml(v19)中設置衔峰,注意:透明狀態(tài)欄屬性會使得內容嵌入到狀態(tài)欄里面
windowTranslucentNavigation 透明導航欄(android4.4以上支持)邻悬,在styles.xml(v19)中設置
windowDrawsSystemBarBackgrounds 使導航欄和狀態(tài)欄可繪制(android5.0以上支持),即狀態(tài)欄是否覆蓋在ContentView上症昏,在styles.xml(v21)中設置
android:statusBarColor 狀態(tài)欄顏色
android:colorPrimary 標題欄背景顏色
android:colorPrimaryDark 狀態(tài)欄透明層顏色
android:colorAccent 一般如floatingActionBar按鈕的顏色,RadioButton/輸入框聚焦/進度條等色值
android:textColorPrimary 標題欄文字色值
android:windowBackground 窗口背景色
二父丰、fitSystemWindows屬性

android:fitsSystemWindows設置成true確保應用內容不會和系統(tǒng)窗口(狀態(tài)欄和底下的虛擬導般欄)重疊肝谭。通過在 View 上設置和系統(tǒng)窗口一樣高度的邊框(padding )來確保應用內容不會出現(xiàn)到系統(tǒng)窗口下面。
注意事項:如果多個View設置了android:fitsSystemWindows=”true”,則只有初始的view起作用,都是從第一個設置了fitsSystemWindows的view開始計算paddin(即如果在布局中不是最外層控件設置fitsSystemWindows攘烛,那么設置的那個控件高度會多出一個狀態(tài)欄高度)魏滚;View 的其他 padding 值被重新改寫了,在使用 fitsSystemWindows 為 true 的View 上設置 padding 值(paddingLeft/paddingTop/ 等)是沒有效果坟漱。

優(yōu)點:系統(tǒng)會自己計算好布局距狀態(tài)欄的高度鼠次,使界面內容布局位于狀態(tài)欄下方和導航欄上方。
缺點:若有背景圖需要延伸到系統(tǒng)窗口(狀態(tài)欄)時無法實現(xiàn)芋齿,需要借助如DrawerLayout腥寇,NavigationView,coordinatorlayout等控件沟突,這些控件對dispatchApplyWindowInsets進行了處理花颗。
如下圖所示捕传,如果沒有借助上述的控件惠拭,則上面的圖片無法延伸至狀態(tài)欄。


三庸论、使背景圖片延伸至狀態(tài)欄

如果我們可以不借助上述控件职辅,但也希望上面的圖片延伸到狀態(tài)欄呢,我們可以將狀態(tài)欄設置成透明狀態(tài)聂示,不使用fitSystemWindow屬性域携,并將標題欄設置paddingTop狀態(tài)欄的高度。

//調用該方法使得內容在狀態(tài)欄下面
private void setStateBarPadding(boolean isImmerse) {//是否浸入
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        Window window = getWindow();
        window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
    }

    TextView tv_content = (TextView) findViewById(R.id.tv_content);
    // 設置頭部控件ViewGroup的PaddingTop,防止界面與狀態(tài)欄重疊
    int statusBarHeight = getStatusBarHeight(this);
    tv_content.setPadding(0, isImmerse ? 0 : statusBarHeight, 0, 0);
}

private static int getStatusBarHeight(Context context) {
    int result = 0;
    int resourceId = context.getResources().getIdentifier(
            "status_bar_height", "dimen", "android");
    if (resourceId > 0) {
        result = context.getResources().getDimensionPixelSize(resourceId);
    }
    return result;
}
四鱼喉、標題欄折疊實現(xiàn)

若要使上圖2中的頁面秀鞭,向上滑動時,頭圖慢慢消失扛禽,當要顯示現(xiàn)在的列表時锋边,標題欄顯示在最頂上,如下圖效果编曼,就需要結合CoordinatorLayout與CollapsingToolbarLayout結合使用豆巨。


具體實現(xiàn)布局如下:

 <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/main_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/appbar"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:fitsSystemWindows="true"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/collapsing_toolbar"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                app:contentScrim="?attr/colorPrimary"
                app:expandedTitleMarginEnd="64dp"
                app:expandedTitleMarginStart="48dp"
             app:layout_scrollFlags="scroll|exitUntilCollapsed">

                <ImageView
                    android:id="@+id/logo"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:background="@mipmap/header_img"
                    android:contentDescription="@null"
                    android:fitsSystemWindows="true"
                    android:scaleType="fitCenter"
                    app:layout_collapseMode="parallax"
                    app:layout_collapseParallaxMultiplier="0.1" />

                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    app:layout_collapseMode="pin"
                    app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

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

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

        <android.support.v4.widget.NestedScrollView
            android:id="@+id/nested_scroll_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/large_text" />

        </android.support.v4.widget.NestedScrollView>

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/floating_action_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="@dimen/fab_margin"
            android:clickable="true"
            android:src="@mipmap/ic_star_black_24dp"
            app:layout_anchor="@id/appbar"
            app:layout_anchorGravity="bottom|right|end" />

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

具體使用方法:CoordinatorLayout作為最外層容器,AppBarLayout作為第一個子view掐场,還包含一個NestedScrollView作為一起滑動的控件往扔,CollapsingToolbarLayout嵌套在AppBarLayout里,AppBarLayout里面又嵌套ImageView和Toolbar熊户。

1?CoordinatorLayout
CoordinatorLayout是用來協(xié)調其子view們之間動作的一個父view萍膛。
類似于FrameLayout,根布局嚷堡,能實現(xiàn)的效果:

  1. 讓浮動操作按鈕上下滑動蝗罗,為Snackbar留出空間。
  2. 擴展或者縮小Toolbar或者頭部,讓主內容區(qū)域有更多的空間绿饵。
  3. 控制哪個view應該擴展還是收縮欠肾,以及其顯示大小比例,包括視差滾動效果動畫拟赊。
    我們在NestedScrollView中設置了behavior屬性刺桃,
    它主要用來給CoordinatorLayout的子view們實現(xiàn)交互的。

2?AppBarLayout
AppBarLayout是一種支持響應滾動手勢的app bar布局(比如工具欄滾出或滾入屏幕)吸祟;與AppBarLayout組合的滾動布局有(Recyclerview瑟慈、NestedScrollView等),這需要相應的控件設置app:layout_behavior=”@string/appbar_scrolling_view_behavior”(上面代碼中NestedScrollView控件所設置的)屋匕。沒有設置的話葛碧,AppBarLayout將不會響應滾動布局的滾動事件。

3?CollapsingToolbarLayout
CollapsingToolbarLayout是專門用來實現(xiàn)子布局內不同元素響應滾動細節(jié)的布局过吻。
在CollapsingToolbarLayout中进泼,設置了以下以個參數(shù):

  1. //當完全CollapsingToolbarLayout折疊(收縮)后的背景顏色。
    app:contentScrim=”?attr/colorPrimary”
  2. //設置擴張時候(還沒有收縮時)title距離左邊的距離
    app:expandedTitleMarginStart=”48dp”
  3. //設置擴張時候(還沒有收縮時)title距離右邊的距離
    app:expandedTitleMarginEnd=”64dp”
    4)//scroll:設置該控件能滾動纤虽, exitUntilCollapsed: 向上滾動時收縮View乳绕,Toolbar一直固定在上面
    app:layout_scrollFlags=”scroll|exitUntilCollapsed”

具體layout_scrollFlags還有其他三個設置:

  1. enterAlways - 實現(xiàn)quick return效果, 當向下移動時,立即顯示View(比如Toolbar)逼纸。
  2. enterAlwaysCollapsed - 當你的View已經設置minHeight屬性又使用此標志時洋措,那么view將在到達這個最小高度的時候開始顯示,并且從這個時候開始慢慢展開杰刽,當滾動到頂部的時候展開完菠发。
  3. snap:當一個滾動事件結束,如果視圖是部分可見的贺嫂,那么它將被滾動到收縮或展開滓鸠。例如,如果視圖只有底部25%顯示涝婉,它將折疊哥力。相反,如果它的底部75%可見墩弯,那么它將完全展開吩跋。

CollapsingToolbarLayout還可以進行一些其他設置:

  1. app:contentScrim:設置折疊時標題欄布局的顏色,默認colorPrimary的色值
  2. app:statusBarScrim:設置折疊時狀態(tài)欄的顏色渔工。默認colorPrimaryDark的色值锌钮。

4?Toolbar
這里設置了app:layout_collapseMode=”pin”
pp:layout_collapseMode有三種設置:

  1. off:這個是默認屬性,布局將正常顯示引矩,沒有折疊的行為梁丘。
  2. pin:CollapsingToolbarLayout折疊后侵浸,此布局將固定在頂部。
  3. parallax:CollapsingToolbarLayout折疊時氛谜,此布局也會有視差折疊效果掏觉。
    若設置了parallax模式時,還可以通過app:layout_collapseParallaxMultiplier設置視差滾動因子值漫,值為:0~1澳腹。

5?NestedScrollView

這里設置了app:layout_behavior屬性,
app:layout_behavior=”@string/appbar_scrolling_view_behavior”
behavior屬性主要是設置了ScrollView與AppBarLayout的相互依賴關系杨何,以非侵入的為View添加動態(tài)的依賴布局酱塔,和處理父布局(CoordinatorLayout)滑動手勢。
具體原碼如下:

/**
     * Behavior which should be used by {@link View}s which can scroll vertically and support
     * nested scrolling to automatically scroll any {@link AppBarLayout} siblings.
     */
     public static class ScrollingViewBehavior extends HeaderScrollingViewBehavior {

        public ScrollingViewBehavior() {}

        public ScrollingViewBehavior(Context context, AttributeSet attrs) {

        }

        @Override
        public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) {
            // We depend on any AppBarLayouts
            return dependency instanceof AppBarLayout;
        }

        @Override
        public boolean onDependentViewChanged(CoordinatorLayout parent, View child,
                View dependency) {
            offsetChildAsNeeded(parent, child, dependency);
            return false;
        }

        @Override
        public boolean onRequestChildRectangleOnScreen(CoordinatorLayout parent, View child,
                Rect rectangle, boolean immediate) {

        }

        private void offsetChildAsNeeded(CoordinatorLayout parent, View child, View dependency) {

        }

        @Override
        float getOverlapRatioForOffset(final View header) {

        }

        private static int getAppBarLayoutOffset(AppBarLayout abl) {

        }

        @Override
        AppBarLayout findFirstDependency(List<View> views) {

        }

        @Override
        int getScrollRange(View v) {

        }
    }
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末危虱,一起剝皮案震驚了整個濱河市羊娃,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌埃跷,老刑警劉巖蕊玷,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異捌蚊,居然都是意外死亡集畅,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門缅糟,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人祷愉,你說我怎么就攤上這事窗宦。” “怎么了二鳄?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵赴涵,是天一觀的道長。 經常有香客問我订讼,道長髓窜,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任欺殿,我火速辦了婚禮寄纵,結果婚禮上,老公的妹妹穿的比我還像新娘脖苏。我一直安慰自己程拭,他們只是感情好,可當我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布棍潘。 她就那樣靜靜地躺著恃鞋,像睡著了一般崖媚。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上恤浪,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天畅哑,我揣著相機與錄音,去河邊找鬼水由。 笑死敢课,一個胖子當著我的面吹牛,可吹牛的內容都是我干的绷杜。 我是一名探鬼主播直秆,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼鞭盟!你這毒婦竟也來了圾结?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤齿诉,失蹤者是張志新(化名)和其女友劉穎筝野,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體粤剧,經...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡歇竟,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了抵恋。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片焕议。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖弧关,靈堂內的尸體忽然破棺而出盅安,到底是詐尸還是另有隱情,我是刑警寧澤世囊,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布别瞭,位于F島的核電站,受9級特大地震影響株憾,放射性物質發(fā)生泄漏蝙寨。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一嗤瞎、第九天 我趴在偏房一處隱蔽的房頂上張望墙歪。 院中可真熱鬧,春花似錦猫胁、人聲如沸箱亿。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽届惋。三九已至髓帽,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間脑豹,已是汗流浹背郑藏。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留瘩欺,地道東北人必盖。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像俱饿,于是被迫代替她去往敵國和親歌粥。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內容