簡單記錄沉浸式模式:
沉浸式工具類
public class StateBarTranslucentUtils {
private static final StringTAG ="StateBarTranslucentUtils";
? ? /**
* 是否大于等于4.4的系統(tǒng)(API Level19)
? ? * @author: amos
? ? * @date: 17/4/24 10:49
*/
? ? public static final boolean isLargeAPILevel19 () {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;
? ? }
/** 設(shè)置狀態(tài)欄透明 **/
? ? public static void setStateBarTranslucent(Activity activity) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {//5.0 全透明實(shí)現(xiàn)
? ? ? ? ? ? Window window = activity.getWindow();
? ? ? ? ? ? window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
? ? ? ? ? ? window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
? ? ? ? ? ? ? ? ? ? | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
? ? ? ? ? ? window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
? ? ? ? ? ? window.setStatusBarColor(Color.TRANSPARENT);
? ? ? ? }else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {//4.4 全透明狀態(tài)欄
? ? ? ? ? ? activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
? ? ? ? }
}
/** 設(shè)置狀態(tài)欄顏色 **/
? ? public static void setStateBarColor(Activity activity, int colorResId) {
// 設(shè)置狀態(tài)欄顏色
? ? ? ? ViewGroup contentLayout = (ViewGroup) activity.findViewById(android.R.id.content);
? ? ? ? // 添加占位控件
? ? ? ? setupStatusBarView(activity, contentLayout, activity.getResources().getColor(colorResId));
? ? ? ? // 設(shè)置Activity layout的fitsSystemWindows
? ? ? ? View contentChild = contentLayout.getChildAt(0);
? ? ? ? contentChild.setFitsSystemWindows(true);
? ? }
/** 在contentLayout中添加一個和狀態(tài)欄一樣高度的占位控件,并設(shè)置和標(biāo)題欄一樣的顏色 **/
? ? private static void setupStatusBarView(Activity activity, ViewGroup contentLayout, int color) {
View mStatusBarView =null;
? ? ? ? View statusBarView =new View(activity);
? ? ? ? int statusBarHeight =getStatusBarHeight(activity);
? ? ? ? ViewGroup.LayoutParams lp =new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, statusBarHeight);
? ? ? ? contentLayout.addView(statusBarView, lp);
? ? ? ? mStatusBarView = statusBarView;
? ? ? ? mStatusBarView.setBackgroundColor(color);
? ? }
/**
* 獲得狀態(tài)欄高度
*/
? ? public static int getStatusBarHeight(Context context) {
int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");
? ? ? ? return context.getResources().getDimensionPixelSize(resourceId);
? ? }
/** 小米 **/
? ? private static boolean isXiaoMi() {
//Build.MODEL.replace(" ", "").toLowerCase().contains("mi");
? ? ? ? return Build.MANUFACTURER.toUpperCase().contains("XIAOMI");
? ? }
/** 魅族 **/
? ? private static boolean isMeizu() {
//Build.MODEL.replace(" ", "").toLowerCase().contains("meizu");
? ? ? ? return Build.MANUFACTURER.toUpperCase().contains("MEIZU");
? ? }
/**
* 設(shè)置狀態(tài)欄文字圖標(biāo)的主題顏色(暗或亮)
? ? * @param dark TRUE:暗哮幢。FALSE:亮竖般。
? ? * @author: amos
? ? * @date: 17/4/25 12:29
*/
? ? public static void setStatusBarDarkMode(Activity activity, boolean dark) {
if (isXiaoMi()) {
// 小米的MUI兼容存在問題调鬓,需要同時設(shè)置二種方法
? ? ? ? ? ? setMiuiStatusBarDarkMode(activity, dark);
? ? ? ? }else if (Build.VERSION.SDK_INT >=23){
// 默認(rèn)將6.0+系統(tǒng)放在前面
? ? ? ? ? ? setAndroidAbove6DarkMode(activity, dark);
? ? ? ? }else if (isMeizu()) {
// 魅族
? ? ? ? ? ? setMeizuStatusBarDarkMode(activity, dark);
? ? ? ? }else {
// 其他系統(tǒng)
? ? ? ? }
}
/**
* 適配小米系統(tǒng)狀態(tài)欄黑色字符
* 注意:為了保證在新舊版本的 MIUI 都能實(shí)現(xiàn)「狀態(tài)欄黑色字符」的效果,需要開發(fā)者同時寫上以下兩種實(shí)現(xiàn)方法。
* 文檔:https://dev.mi.com/console/doc/detail?pId=1159
*/
? ? private static boolean setMiuiStatusBarDarkMode(Activity activity, boolean dark) {
try {
// Fix bugly #600698 NullPointerException
? ? ? ? ? ? Class clazz = activity.getWindow().getClass();
? ? ? ? ? ? // 舊版本MIUI方法
? ? ? ? ? ? int darkModeFlag =0;
? ? ? ? ? ? Class layoutParams = Class.forName("android.view.MiuiWindowManager$LayoutParams");
? ? ? ? ? ? Field field = layoutParams.getField("EXTRA_FLAG_STATUS_BAR_DARK_MODE");
? ? ? ? ? ? darkModeFlag = field.getInt(layoutParams);
? ? ? ? ? ? Method extraFlagField = clazz.getMethod("setExtraFlags", int.class, int.class);
? ? ? ? ? ? extraFlagField.invoke(activity.getWindow(), dark ? darkModeFlag :0, darkModeFlag);
? ? ? ? ? ? // Android6.0以上系統(tǒng)方法
? ? ? ? ? ? if (Build.VERSION.SDK_INT >=23) {
setAndroidAbove6DarkMode(activity, dark);
? ? ? ? ? ? }
return true;
? ? ? ? }catch (Exception e) {
e.printStackTrace();
? ? ? ? }
return false;
? ? }
/**
* 適配魅族6.0以下狀態(tài)欄黑色字符
* 文檔:http://open-wiki.flyme.cn/index.php?title=%E7%8A%B6%E6%80%81%E6%A0%8F%E5%8F%98%E8%89%B2}
*/
? ? private static boolean setMeizuStatusBarDarkMode(Activity activity, boolean dark) {
boolean result =false;
? ? ? ? if (activity !=null) {
try {
WindowManager.LayoutParams lp = activity.getWindow().getAttributes();
? ? ? ? ? ? ? ? Field darkFlag = WindowManager.LayoutParams.class
? ? ? ? ? ? ? ? ? ? ? ? .getDeclaredField("MEIZU_FLAG_DARK_STATUS_BAR_ICON");
? ? ? ? ? ? ? ? Field meizuFlags = WindowManager.LayoutParams.class
? ? ? ? ? ? ? ? ? ? ? ? .getDeclaredField("meizuFlags");
? ? ? ? ? ? ? ? darkFlag.setAccessible(true);
? ? ? ? ? ? ? ? meizuFlags.setAccessible(true);
? ? ? ? ? ? ? ? int bit = darkFlag.getInt(null);
? ? ? ? ? ? ? ? int value = meizuFlags.getInt(lp);
? ? ? ? ? ? ? ? if (dark) {
value |= bit;
? ? ? ? ? ? ? ? }else {
value &= ~bit;
? ? ? ? ? ? ? ? }
meizuFlags.setInt(lp, value);
? ? ? ? ? ? ? ? activity.getWindow().setAttributes(lp);
? ? ? ? ? ? ? ? result =true;
? ? ? ? ? ? }catch (Exception e) {
}
}
return result;
? ? }
/**
* Android6.0以上狀態(tài)欄黑色字符
*/
? ? private static void setAndroidAbove6DarkMode(Activity activity, boolean dark) {
if (activity !=null) {
View decorView = activity.getWindow().getDecorView();
? ? ? ? ? ? if (decorView !=null) {
int vis = decorView.getSystemUiVisibility();
? ? ? ? ? ? ? ? if (dark) {
// 用具體值,沒用View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR的原因是需要改編譯版本為23昭雌,但是目前尚未兼容6.0系統(tǒng)的權(quán)限,所以這里用具體值
? ? ? ? ? ? ? ? ? ? vis |=0x00002000;
? ? ? ? ? ? ? ? }else {
vis &= ~(0x00002000);
? ? ? ? ? ? ? ? }
decorView.setSystemUiVisibility(vis);
? ? ? ? ? ? }
}
}
}
工具類使用: