這篇文章主要介紹Android沉浸式實(shí)現(xiàn)兼容的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站建設(shè)、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的靖安網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
先介紹下,什么是沉浸式狀態(tài)欄?
沉浸式,要求在應(yīng)用中Android狀態(tài)欄(StatusBar)與標(biāo)題欄(ActionBar/Toolbar)要擁有相同的顏色,或者使用同一張圖的連續(xù)背景。
話不多說,亮劍吧!
具體實(shí)現(xiàn)需要針對(duì)不同Android版本做處理,還有針對(duì)DecorView做處理以及做activity的xml布局文件根布局控件做屬性處理。
java代碼,設(shè)置沉浸式的方法
/** * 設(shè)置沉浸式狀態(tài)欄顏色 * * @param colorResId 狀態(tài)欄顏色 */ protected void setImmersiveStatusBarColor(@ColorRes int colorResId) { int flags = View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { int statusBarColor = ApkUtil.getColor(this, colorResId); //① float lightDegress = (Color.red(statusBarColor) + Color.green(statusBarColor) + Color.blue(statusBarColor)) / 3; //作色彩亮度判斷,好針對(duì)顏色做相應(yīng)的狀態(tài)欄的暗色還是亮色。 if ((lightDegress > 200 || lightDegress == 0) && Build.VERSION.SDK_INT > Build.VERSION_CODES.M) rootView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); window.setStatusBarColor(statusBarColor); } else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); rootView.setSystemUiVisibility(flags | View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY); } else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) { rootView.setSystemUiVisibility(flags); } if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.KITKAT) { //當(dāng)API小于等于19,此時(shí)為了實(shí)現(xiàn)沉浸式狀態(tài)欄,需要添加一個(gè)view來做statusbar背景控件 final boolean isHasStatusBarView = rootView.getTag() != null; View statusbarView = !isHasStatusBarView ? new View(this) : (View)rootView.getTag(); statusbarView.setBackgroundResource(colorResId); if(!isHasStatusBarView) { rootView.setTag(statusBarView); statusbarView.setLayoutParams(new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, ViewUtil.getStatusBarHeight(this))); //② rootView.addView(statusbarView); } } }
注:此處針對(duì)rootView(即DecorView)、window的獲取不再陳述!
①.ApkUtil.getColor(this, colorResId)
/** * 獲取顏色資源 * @param context 上下文對(duì)象 * @param colorId 顏色ResId * @return */ @SuppressWarnings("deprecation") public static int getColor(Context context, int colorId) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { return context.getColor(colorId); } return context.getResources().getColor(colorId); }
②. 獲取狀態(tài)欄高度
/** * 獲取狀態(tài)欄高度 * @param context 上下文對(duì)象 */ @JvmStatic @SuppressLint("PrivateApi") fun getStatusBarHeight(context: Context): Int { val clazz = Class.forName("com.android.internal.R\$dimen") val obj = clazz?.newInstance() val field = clazz.getField("status_bar_height") field?.let { field.isAccessible = true val x = Integer.parseInt(field.get(obj).toString()) return context.resources.getDimensionPixelSize(x) } return 75 }
activity布局xml根布局添加以下屬性
android:fitsSystemWindows="true" android:clipToPadding="false"
以上是“Android沉浸式實(shí)現(xiàn)兼容的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!