Android 沉浸式狀態(tài)欄 +DrawerLayout+Toolbar,適配4.4X及以上

概述

Android 狀態(tài)欄沉浸式基于4.4及以上, Android 系統(tǒng)名字溉知、版本纳寂、API level的對應(yīng)關(guān)系如下:

Code name Version Cool
Nougat 7.1 API level 25
Nougat 7.0 API level 24
Marshmallow 6.0 API level 23
Lollipop 5.1 API level 22
Lollipop 5.0 API level 21
KitKat 4.4-4.4.4 API level 19
Jelly Bean 4.3.x API level 18
Jelly Bean 4.2.x4 API level 17
Jelly Bean 4.1.x API level 16

所以說只有在kitkat及以上才能實(shí)現(xiàn)沉浸式效果

誘因

前兩天看郭霖的第二行代碼,章節(jié)第十二部分主要是寫了關(guān)于Material Design UI設(shè)計,界面很是炫酷,其中包括DrawerLayout+Toolbar的使用界面很是炫酷,寫的也是通俗易懂,代碼連接,但是本書是基于5.0寫的,所以效果沒有適配到4.4x上.
他的效果代碼截圖:

5.0及以上

5x_01.png

5x_02.png

4.4及以上

4x_01.png
4x_02.png

可以到4.4上的效果還是有差別的,下面給出解決方法:
方法有些拙劣,如果有其他更好的解決辦法,請一定告訴我.

  • 首先看這張標(biāo)圖效果
img.jpg

這三個顏色,新建工程時都是給出

    <color name="colorPrimary">#3F51B5</color>
    <color name="colorPrimaryDark">#303F9F</color>
    <color name="colorAccent">#FF4081</color>
  • 在styles里配置
<resources>

    <!-- Base application theme. -->
    <style name="BaseAppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <style name="AppTheme" parent="@style/BaseAppTheme"></style>
</resources>

新建:values-v19和values-v21文件夾,分別在里面創(chuàng)建styles文件,分別配置
values-v19

<?xml version="1.0" encoding="utf-8"?>
<resources>

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

    <style name="fitsystem">
        <item name="android:fitsSystemWindows">true</item>
    </style>
</resources>

values-v21

<resources>

    <style name="AppTheme" parent="BaseAppTheme">
    </style>
</resources>

為什么要這么配置呢,因?yàn)楸纠佑玫搅?strong>CoordinatorLayout,AppBarLayout,Toolar,所以要單獨(dú)對對Toolbar做處理,看代碼:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <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"
                style="@style/fitsystem"
                android:layout_width="match_parent"
                android:layout_height="@dimen/toolBarheight"
                android:background="?attr/colorPrimary"
                android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                app:layout_scrollFlags="scroll|enterAlways|snap"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
        </android.support.design.widget.AppBarLayout>
        <android.support.v4.widget.SwipeRefreshLayout
            android:id="@+id/swip_refresh"
            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/recycler_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </android.support.v4.widget.SwipeRefreshLayout>
        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|end"
            android:layout_margin="16dp"
            android:src="@drawable/ic_done" />
    </android.support.design.widget.CoordinatorLayout>
    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header"
        app:menu="@menu/nav_menu" />
</android.support.v4.widget.DrawerLayout>

可以看到在在Toolbar里讓布局在v19里是

 <style name="fitsystem">
      <item name="android:fitsSystemWindows">true</item>
  </style>

同樣的道理這個時候Toolbar的高,也要出處理,在v19里面要設(shè)置更高些,因?yàn)樗靡徊糠质乔度氲綘顟B(tài)里面的
所以在values values-v19 values-v21都設(shè)置了Toolbar的高度,在19里單獨(dú)設(shè)置了80dp ,其他的都是54,這個值可以自己來衡量

  • 在代碼里面要重新處理4.4x情況如下:
    Activity
      setContentView(R.layout.activity_main);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

      StatusBarCompat.compat(this);

這里如果是在4.4上就要另外添加一個顏色塊到狀態(tài)欄

public class StatusBarCompat {

    private static final int statusColor = Color.parseColor("#303F9F");

    public static void compat(Activity activity ) {

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
            ViewGroup contentView = (ViewGroup) activity.findViewById(android.R.id.content);
            View statusBarView = contentView.getChildAt(0);
            //改變顏色時避免重復(fù)添加statusBarView
            if (statusBarView != null && statusBarView.getMeasuredHeight() == getStatusBarHeight(activity)) {
                statusBarView.setBackgroundColor(statusColor);
                return;
            }
            statusBarView = new View(activity);
            ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
                    getStatusBarHeight(activity));
            statusBarView.setBackgroundColor(statusColor);
            contentView.addView(statusBarView, lp);
        }

    }

    public 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;
    }
}
  • 下面來看看效果

5.0及以上

5x_03.png

4.4及以上

4x_03.png

可以看到效果就OK了,然后我有測試了7.0效果也是OK的.文筆稍差.

總結(jié)

當(dāng)然了可能你把這個用到你的項(xiàng)目可能會發(fā)現(xiàn)有些問題,因?yàn)楸疚氖轻槍卮a處理的,盡可能最小的改動達(dá)到效果.要特別注意在v19

  <item name="android:fitsSystemWindows">true</item>

這個要配合代碼布局文件使用,要根據(jù)自己的項(xiàng)目布局去處理,如這篇文章家杰的博客
本文參考了鴻洋的經(jīng)典文章
這是我的代碼,錯誤或有更好的方法請告訴我.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市穷吮,隨后出現(xiàn)的幾起案子芙沥,更是在濱河造成了極大的恐慌,老刑警劉巖封断,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異舶担,居然都是意外死亡澄港,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進(jìn)店門柄沮,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人废岂,你說我怎么就攤上這事祖搓。” “怎么了湖苞?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵拯欧,是天一觀的道長。 經(jīng)常有香客問我财骨,道長镐作,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任隆箩,我火速辦了婚禮该贾,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘捌臊。我一直安慰自己杨蛋,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布理澎。 她就那樣靜靜地躺著逞力,像睡著了一般。 火紅的嫁衣襯著肌膚如雪糠爬。 梳的紋絲不亂的頭發(fā)上寇荧,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天,我揣著相機(jī)與錄音执隧,去河邊找鬼揩抡。 笑死户侥,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的捅膘。 我是一名探鬼主播添祸,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼寻仗!你這毒婦竟也來了刃泌?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤署尤,失蹤者是張志新(化名)和其女友劉穎耙替,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體曹体,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡俗扇,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了箕别。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片铜幽。...
    茶點(diǎn)故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖串稀,靈堂內(nèi)的尸體忽然破棺而出除抛,到底是詐尸還是另有隱情,我是刑警寧澤母截,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布到忽,位于F島的核電站,受9級特大地震影響清寇,放射性物質(zhì)發(fā)生泄漏喘漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一华烟、第九天 我趴在偏房一處隱蔽的房頂上張望翩迈。 院中可真熱鬧,春花似錦盔夜、人聲如沸帽馋。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽绽族。三九已至,卻和暖如春衩藤,著一層夾襖步出監(jiān)牢的瞬間吧慢,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工赏表, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留检诗,地道東北人匈仗。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像逢慌,于是被迫代替她去往敵國和親悠轩。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評論 2 348

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