Android 沉浸式狀態列、狀態列一體化、透明狀態列、仿ios透明狀態列
http://blog.csdn.net/jdsjlzx/article/details/50437779
注:狀態列的字型顏色位白色, 如果狀態列背景為白色,上面的部落格已經解決了。
原文出處:http://niorgai.github.io/2016/03/20/Android-transulcent-status-bar/
最近業務上看到一個設計圖挺好看,所以研究了一下透明狀態列,注意不是沉浸式狀態列,在參考了網上的一些資料後,整理出了這篇部落格.
Github Demo 連結: StatusBarCompat
參考文章:由沉浸式狀態列引發的血案
Translucent System Bar 的最佳實踐
該使用 fitsSystemWindows 了!
首先強調,對於狀態列的處理有兩種不同的方式, 這裡從Translucent System Bar 的最佳實踐直接盜了兩張圖做對比~.
全屏( ContentView 可以進入狀態列) | 非全屏 ( ContentView 與狀態列分離, 狀態列直接著色) |
---|
| |
先定義幾個名詞:
全屏模式: 左邊圖所示.
著色模式: 右邊圖所示.
ContentView: activity.findViewById(Window.ID_ANDROID_CONTENT) 獲取的 View , 即 setContentView 方法所設定的 View, 實質為 FrameLayout.
ContentParent: ContentView 的 parent , 實質為 LinearLayout.
ChildView: ContentView 的第一個子 View ,即佈局檔案中的 layout .
再介紹一下相關的函式:
fitsSystemWindows, 該屬性可以設定是否為系統 View 預留出空間, 當設定為 true 時,會預留出狀態列的空間.
ContentView, 實質為 ContentFrameLayout, 但是重寫了 dispatchFitSystemWindows 方法, 所以對其設定 fitsSystemWindows 無效.
ContentParent, 實質為 FitWindowsLinearLayout, 裡面第一個 View 是 ViewStubCompat, 如果主題沒有設定 title ,它就不會 inflate .第二個 View 就是 ContentView.
5.0以上的處理:
自5.0引入 Material Design ,狀態列對開發者更加直接,可以直接呼叫 setStatusBarColor 來設定狀態列的顏色.
全屏模式:
- Window window = activity.getWindow();
-
- window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
-
-
- window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
-
- window.setStatusBarColor(statusColor);
-
- ViewGroup mContentView = (ViewGroup) activity.findViewById(Window.ID_ANDROID_CONTENT);
- View mChildView = mContentView.getChildAt(0);
- if (mChildView != null) {
-
- ViewCompat.setFitsSystemWindows(mChildView, false);
- }
著色模式:
- Window window = activity.getWindow();
-
- window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
-
-
- window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
-
- window.setStatusBarColor(statusColor);
-
- ViewGroup mContentView = (ViewGroup) activity.findViewById(Window.ID_ANDROID_CONTENT);
- View mChildView = mContentView.getChildAt(0);
- if (mChildView != null) {
-
- ViewCompat.setFitsSystemWindows(mChildView, true);
- }
4.4-5.0的處理:
4.4-5.0因為沒有直接的 API 可以呼叫,需要自己相容處理,網上的解決方法基本都是建立一下高度為狀態列的 View ,通過設定這個 View 的背景色來模擬狀態列. 這裡我嘗試了三種方法來相容處理.
方法1: 向 ContentView 新增假 View , 設定 ChildView 的 marginTop 屬性來模擬 fitsSystemWindows .
全屏模式:
- Window window = activity.getWindow();
- ViewGroup mContentView = (ViewGroup) activity.findViewById(Window.ID_ANDROID_CONTENT);
-
-
- View mChildView = mContentView.getChildAt(0);
- if (mChildView != null) {
- ViewCompat.setFitsSystemWindows(mChildView, false);
- }
-
- int statusBarHeight = getStatusBarHeight(activity);
-
- window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
-
- if (mChildView != null && mChildView.getLayoutParams() != null && mChildView.getLayoutParams().height == statusBarHeight) {
-
- mContentView.removeView(mChildView);
- mChildView = mContentView.getChildAt(0);
- }
- if (mChildView != null) {
- FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) mChildView.getLayoutParams();
-
- if (lp != null && lp.topMargin >= statusBarHeight) {
- lp.topMargin -= statusBarHeight;
- mChildView.setLayoutParams(lp);
- }
- }
著色模式:
- Window window = activity.getWindow();
- ViewGroup mContentView = (ViewGroup) activity.findViewById(Window.ID_ANDROID_CONTENT);
-
-
- window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
- int statusBarHeight = getStatusBarHeight(activity);
-
- View mChildView = mContentView.getChildAt(0);
- if (mChildView != null) {
- FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) mChildView.getLayoutParams();
-
- if (lp != null && lp.topMargin < statusBarHeight && lp.height != statusBarHeight) {
-
- ViewCompat.setFitsSystemWindows(mChildView, false);
- lp.topMargin += statusBarHeight;
- mChildView.setLayoutParams(lp);
- }
- }
-
- View statusBarView = mContentView.getChildAt(0);
- if (statusBarView != null && statusBarView.getLayoutParams() != null && statusBarView.getLayoutParams().height == statusBarHeight) {
-
- statusBarView.setBackgroundColor(statusColor);
- return;
- }
- statusBarView = new View(activity);
- ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, statusBarHeight);
- statusBarView.setBackgroundColor(statusColor);
-
- mContentView.addView(statusBarView, 0, lp);
方法2: 向 ContentParent 新增假 View ,設定 ContentView 和 ChildView 的 fitsSystemWindows.
全屏模式:
- Window window = activity.getWindow();
- window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
-
- ViewGroup mContentView = (ViewGroup) activity.findViewById(Window.ID_ANDROID_CONTENT);
- ViewGroup mContentParent = (ViewGroup) mContentView.getParent();
-
- View statusBarView = mContentParent.getChildAt(0);
- if (statusBarView != null && statusBarView.getLayoutParams() != null && statusBarView.getLayoutParams().height == getStatusBarHeight(activity)) {
-
- mContentParent.removeView(statusBarView);
- }
-
- if (mContentParent.getChildAt(0) != null) {
- ViewCompat.setFitsSystemWindows(mContentParent.getChildAt(0), false);
- }
-
-
- View mChildView = mContentView.getChildAt(0);
- if (mChildView != null) {
- ViewCompat.setFitsSystemWindows(mChildView, false);
- }
著色模式(會有一條黑線,無法解決):
- Window window = activity.getWindow();
- window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
-
- ViewGroup mContentView = (ViewGroup) activity.findViewById(Window.ID_ANDROID_CONTENT);
- ViewGroup mContentParent = (ViewGroup) mContentView.getParent();
-
- View statusBarView = mContentParent.getChildAt(0);
- if (statusBarView != null && statusBarView.getLayoutParams() != null && statusBarView.getLayoutParams().height == 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);
- mContentParent.addView(statusBarView, 0, lp);
-
-
- View mChildView = mContentView.getChildAt(0);
- if (mChildView != null) {
- ViewCompat.setFitsSystemWindows(mChildView, false);
- }
方法3:向 ContentView 新增假 View , 設定 ChildView 的 fitsSystemWindows.
全屏模式:
- Window window = activity.getWindow();
- window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
-
- ViewGroup mContentView = (ViewGroup) activity.findViewById(Window.ID_ANDROID_CONTENT);
- View statusBarView = mContentView.getChildAt(0);
-
- if (statusBarView != null && statusBarView.getLayoutParams() != null && statusBarView.getLayoutParams().height == getStatusBarHeight(activity)) {
- mContentView.removeView(statusBarView);
- }
-
- if (mContentView.getChildAt(0) != null) {
- ViewCompat.setFitsSystemWindows(mContentView.getChildAt(0), false);
- }
著色模式:
- Window window = activity.getWindow();
- window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
-
- ViewGroup mContentView = (ViewGroup) activity.findViewById(Window.ID_ANDROID_CONTENT);
- int statusBarHeight = getStatusBarHeight(activity);
-
- View mTopView = mContentView.getChildAt(0);
- if (mTopView != null && mTopView.getLayoutParams() != null && mTopView.getLayoutParams().height == statusBarHeight) {
-
- mTopView.setBackgroundColor(statusColor);
- return;
- }
-
- if (mTopView != null) {
- ViewCompat.setFitsSystemWindows(mTopView, true);
- }
-
-
- mTopView = new View(activity);
- ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, statusBarHeight);
- mTopView.setBackgroundColor(statusColor);
- mContentView.addView(mTopView, 0, lp);
其實全屏模式在三種模式下實現都是一樣的,主要是著色模式實現不同.
對比一下三種著色模式實現的方式:
| 方法1 | 方法2 | 方法3 |
---|
原理 | 向 ContentView 中新增假 View, 然後利用 ChildView 的 marginTop 屬性來模擬 fitsSystemWindows ,主要是通過修改 marginTop 的值可以在全屏模式和著色模式之間切換. | 因為 ParentView 的實質是一個 LinearLayout , 可以再其頂部新增 View . | 向 ContentView 中新增假 View, 然後利用ChildView 的 fitsSystemWindows 屬性來控制位置, 但是實現缺陷就是不能隨時切換兩種模式. |
缺陷 | 改變了 ChildView 的 marginTop 值 | 著色模式下,會像由沉浸式狀態列引發的血案中一樣出現一條黑線 | 不能在不重啟 Activity 的情況下切換模式. |
對應 Github demo 中程式碼 | StatusBarCompat類 | StatusBarCompat1類 | StatusBarCompat2 類 |
總結
StatusBarCompat2 主要問題不能切換.
StatusBarCompat1 在4.4上會有一條黑線, 如果可以解決我覺得這是最靠譜的解決方法.
StatusBarCompat 類算是我最後給出的解決方案吧, 目前使用效果比較完善.推薦使用
推薦乾貨集中營Android客戶端,實現了沉浸式狀態列,無縫換膚,帶3D感覺的側滑選單
主頁及側滑頁截圖
gank1.png
福利及換膚截圖
gank2.png
下載地址:乾貨集中營
github:GanK