Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> 如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

編輯:Android開發實例

       一、概述

       近期注意到QQ新版使用了沉浸式狀態欄,ok,先聲明一下:本篇博客效果下圖:

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

       關於這個狀態欄變色到底叫「Immersive Mode」/「Translucent Bars」有興趣可以去了解下。

       恩,接下來正題。

       首先只有大於等於4.4版本支持這個半透明狀態欄的效果,但是4.4和5.0的顯示效果有一定的差異,所有本篇博文內容為:

       如何實現半透明狀態欄效果在大於4.4版本之上。

       如何讓4.4的效果與5.0的效果盡可能一致。

       看了不少參考文章,都介紹到這個庫,大家可以了解:SystemBarTint。

       不過本篇博文並未基於此庫,自己想了個hack,對於此庫源碼有空再看了。

       二、效果圖

       先貼下效果圖,以便和實現過程中做下對比

       4.4 模擬器

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

      5.x 真機

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

       ok,有了效果圖之後就開始看實現了。

       三、實現半透明狀態欄

       因為本例使用了NavigationView,所以布局代碼稍多,當然如果你不需要,可以自己進行篩減。

       注意引入相關依賴:

Java代碼
  1. compile 'com.android.support:appcompat-v7:22.2.1'  
  2. compile 'com.android.support:support-v4:22.2.1'  
  3. compile 'com.android.support:design:22.2.0'  

      (一)colors.xml 和 styles.xml

       首先我們定義幾個顏色:

       res/values/color.xml

XML/HTML代碼
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <resources>  
  3.     <color name="primary">#FF03A9F4</color>  
  4.     <color name="primary_dark">#FF0288D1</color>  
  5.     <color name="status_bar_color">@color/primary_dark</color>  
  6. </resources>  

       下面定義幾個styles.xml

       注意文件夾的路徑:

       values/styles.xml

XML/HTML代碼
  1. <resources>  
  2.     <style name="BaseAppTheme" parent="Theme.AppCompat.Light.NoActionBar">  
  3.         <!-- Customize your theme here. -->  
  4.         <item name="colorPrimary">@color/primary</item>  
  5.         <item name="colorPrimaryDark">@color/primary_dark</item>  
  6.         <item name="colorAccent">#FF4081</item>  
  7.     </style>  
  8.   
  9.     <!-- Base application theme. -->  
  10.     <style name="AppTheme" parent="@style/BaseAppTheme">  
  11.     </style>  
  12. </resources>  

       values-v19

XML/HTML代碼
  1. <resources>  
  2.     <style name="AppTheme" parent="@style/BaseAppTheme">  
  3.         <item name="android:windowTranslucentStatus">true</item>  
  4.     </style>  
  5. </resources>  

       ok,這個沒撒說的。注意我們的主題是基於NoActionBar的,android:windowTranslucentStatus這個屬性是v19開始引入的。

      (二)布局文件

       activity_main.xml

XML/HTML代碼
  1. <android.support.v4.widget.DrawerLayout  
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     xmlns:app="http://schemas.android.com/apk/res-auto"  
  4.     xmlns:tools="http://schemas.android.com/tools"  
  5.     android:layout_width="match_parent"  
  6.     android:layout_height="match_parent"  
  7.     >  
  8.   
  9.   
  10.     <LinearLayout  
  11.         android:id="@+id/id_main_content"  
  12.         android:layout_width="match_parent"  
  13.         android:layout_height="match_parent"  
  14.         android:orientation="vertical">  
  15.   
  16.         <android.support.v7.widget.Toolbar  
  17.             android:id="@+id/id_toolbar"  
  18.             android:layout_width="match_parent"  
  19.             android:layout_height="wrap_content"  
  20.             android:background="?attr/colorPrimary"  
  21.             android:fitsSystemWindows="true"  
  22.             app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>  
  23.   
  24.   
  25.         <TextView  
  26.             android:id="@+id/id_tv_content"  
  27.             android:layout_width="match_parent"  
  28.             android:layout_height="0dp"  
  29.             android:layout_weight="1"  
  30.             android:gravity="center"  
  31.             android:text="HelloWorld"  
  32.             android:textSize="30sp"/>  
  33.     </LinearLayout>  
  34.   
  35.   
  36.     <android.support.design.widget.NavigationView  
  37.         android:id="@+id/id_nv_menu"  
  38.         android:layout_width="match_parent"  
  39.         android:layout_height="match_parent"  
  40.         android:layout_gravity="start"  
  41.         android:fitsSystemWindows="true"  
  42.         app:headerLayout="@layout/header_just_username"  
  43.         app:menu="@menu/menu_drawer"  
  44.         />  
  45. </android.support.v4.widget.DrawerLayout>  

       DrawerLayout內部一個LinearLayout作為內容區域,一個NavigationView作為菜單。 

       注意下Toolbar的高度設置為wrap_content。

       然後我們的NavigationView中又依賴一個布局文件和一個menu的文件。

       header_just_username.xml

XML/HTML代碼
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.                 android:layout_width="match_parent"  
  4.                 android:layout_height="192dp"  
  5.                 android:background="?attr/colorPrimaryDark"  
  6.                 android:orientation="vertical"  
  7.                 android:padding="16dp"  
  8.                 android:fitsSystemWindows="true"  
  9.                 android:theme="@style/ThemeOverlay.AppCompat.Dark">  
  10.   
  11.     <TextView  
  12.         android:id="@+id/id_link"  
  13.         android:layout_width="wrap_content"  
  14.         android:layout_height="wrap_content"  
  15.         android:layout_alignParentBottom="true"  
  16.         android:layout_marginBottom="16dp"  
  17.         android:text="http://blog.csdn.net/lmj623565791"/>  
  18.   
  19.     <TextView  
  20.         android:id="@+id/id_username"  
  21.         android:layout_width="wrap_content"  
  22.         android:layout_height="wrap_content"  
  23.         android:layout_above="@id/id_link"  
  24.         android:text="Zhang Hongyang"/>  
  25.   
  26.     <ImageView  
  27.         android:layout_width="72dp"  
  28.         android:layout_height="72dp"  
  29.         android:layout_above="@id/id_username"  
  30.         android:layout_marginBottom="16dp"  
  31.         android:src="@mipmap/ic_launcher"/>  
  32.   
  33.   
  34. </RelativeLayout>  

       menu的文件就不貼了,更加詳細的可以去參考Android 自己實現 NavigationView [Design Support Library(1)]。

       大體看完布局文件以後,有幾個點要特別注意:

       • ToolBar高度設置為wrap_content

       • ToolBar添加屬性android:fitsSystemWindows="true"

       • header_just_username.xml的跟布局RelativeLayout,添加屬性android:fitsSystemWindows="true"

       android:fitsSystemWindows這個屬性,主要是通過調整當前設置這個屬性的view的padding去為我們的status_bar留下空間。

       根據上面的解釋,如果你不寫,那麼狀態欄和Toolbar就會有擠一塊的感覺了,類似會這樣:

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

       ok,最後看下代碼。

       (三)Activity的代碼

Java代碼
  1. package com.zhy.colorfulstatusbar;  
  2.   
  3. import android.os.Bundle;  
  4. import android.support.v7.app.AppCompatActivity;  
  5. import android.support.v7.widget.Toolbar;  
  6.   
  7. public class MainActivity extends AppCompatActivity  
  8. {  
  9.   
  10.     @Override  
  11.     protected void onCreate(Bundle savedInstanceState)  
  12.     {  
  13.         super.onCreate(savedInstanceState);  
  14.         setContentView(R.layout.activity_main);  
  15.         Toolbar toolbar = (Toolbar) findViewById(R.id.id_toolbar);  
  16.         setSupportActionBar(toolbar);  
  17.         //StatusBarCompat.compat(this, getResources().getColor(R.color.status_bar_color));  
  18.         //StatusBarCompat.compat(this);  
  19.     }  
  20.   
  21. }  

       沒撒說的,就是setSupportActionBar。

       那麼現在4.4的效果圖是:

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

       其實還不錯,有個漸變的效果。

       現在5.x的效果:

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

       可以看到5.x默認並非是一個漸變的效果,類似是一個深一點的顏色。

       再看看我們md的規范

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

       狀態欄應該是一個比Toolbar背景色,稍微深一點的顏色。

       這麼看來,我們還是有必要去為4.4做點適配工作,讓其竟可能和5.x顯示效果一致,或者說盡可能符合md的規范。

       四、調整4.4的顯示方案

       那麼問題來了?如何做呢?

       咱們這麼看,4.4之後加入windowTranslucentStatus的屬性之後,也就是我們可以用到狀態欄的區域了。

       既然我們可以用到這塊區域,那麼我們只要在根布局去設置一個與狀態欄等高的View,設置背景色為我們期望的顏色就可以了。

       於是有了以下的代碼:

Java代碼
  1. package com.zhy.colorfulstatusbar;  
  2.   
  3. import android.annotation.TargetApi;  
  4. import android.app.Activity;  
  5. import android.content.Context;  
  6. import android.graphics.Color;  
  7. import android.os.Build;  
  8. import android.view.View;  
  9. import android.view.ViewGroup;  
  10.   
  11. /** 
  12.  * Created by zhy on 15/9/21. 
  13.  */  
  14. public class StatusBarCompat  
  15. {  
  16.     private static final int INVALID_VAL = -1;  
  17.     private static final int COLOR_DEFAULT = Color.parseColor("#20000000");  
  18.   
  19.     @TargetApi(Build.VERSION_CODES.LOLLIPOP)  
  20.     public static void compat(Activity activity, int statusColor)  
  21.     {  
  22.   
  23.         if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)  
  24.         {  
  25.             if (statusColor != INVALID_VAL)  
  26.             {  
  27.                 activity.getWindow().setStatusBarColor(statusColor);  
  28.             }  
  29.             return;  
  30.         }  
  31.   
  32.         if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP)  
  33.         {  
  34.             int color = COLOR_DEFAULT;  
  35.             ViewGroup contentView = (ViewGroup) activity.findViewById(android.R.id.content);  
  36.             if (statusColor != INVALID_VAL)  
  37.             {  
  38.                 color = statusColor;  
  39.             }  
  40.             View statusBarView = new View(activity);  
  41.             ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,  
  42.                     getStatusBarHeight(activity));  
  43.             statusBarView.setBackgroundColor(color);  
  44.             contentView.addView(statusBarView, lp);  
  45.         }  
  46.   
  47.     }  
  48.   
  49.     public static void compat(Activity activity)  
  50.     {  
  51.         compat(activity, INVALID_VAL);  
  52.     }  
  53.   
  54.   
  55.     public static int getStatusBarHeight(Context context)  
  56.     {  
  57.         int result = 0;  
  58.         int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");  
  59.         if (resourceId > 0)  
  60.         {  
  61.             result = context.getResources().getDimensionPixelSize(resourceId);  
  62.         }  
  63.         return result;  
  64.     }  
  65. }  

       代碼的思路很簡單,根據Activity找到android.R.content,在其中添加一個View(高度為statusbarHeight,背景色為我們設置的顏色,默認為半透明的黑色)。

       那麼只需要在Activity裡面去寫上:

Java代碼
  1. StatusBarCompat.compat(this);  

       就可以了。

       如果你希望自己設置狀態看顏色,那麼就用這個方法:

Java代碼
  1. StatusBarCompat.compat(this, getResources().getColor(R.color.status_bar_color));  

       這樣的話我們就解決了4.4到5.x的適配問題,一行代碼解決,感覺還是不錯的。

       最後提一下,對於5.0由於提供了setStatusBarColor去設置狀態欄顏色,但是這個方法不能在主題中設置windowTranslucentStatus屬性。所以,可以編寫一個value-v21文件夾,裡面styles.xml寫入:

XML/HTML代碼
  1. <resources>  
  2.     <!-- Base application theme. -->  
  3.     <style name="AppTheme" parent="@style/BaseAppTheme">  
  4.     </style>  
  5. </resources>  

       其實就是不要有windowTranslucentStatus屬性。

       接下來,對於默認的效果就不測試了,參考上面的效果圖。

       我們測試個設置狀態欄顏色的,我們這裡設置個紅色。

       4.4 模擬器

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

       5.x 真機

如何實現Android沉浸式狀態欄——讓你的狀態欄變個色

       ok,這樣就結束啦~~

       源碼地址:https://github.com/hongyangAndroid/ColorfulStatusBar

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved