Android适配刘海屏+沉浸式状态栏+启动页白屏解决方案
Posted dahaiChang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android适配刘海屏+沉浸式状态栏+启动页白屏解决方案相关的知识,希望对你有一定的参考价值。
一、刘海屏适配可 参考对应手机官方文档
小米:dev.mi.com/console/doc/detail?pld=1160
oppo、vivo:open.oppomobile.com/wiki/doc#id=10159
在Manifest.xmlz中配置-application中插入
<!-- OPPO -->
<meta-data
android:name="android.max_aspect"
android:value="2.2" />
<!-- 小米适配 -->
<meta-data
android:name="notch.config"
android:value="portrait|landscape" />
<!-- 允许绘制到华为刘海屏机型的刘海区域 -->
<meta-data
android:name="android.notch_support"
android:value="true" />
二、沉浸式状态栏
新建工具类SystemUI.java,具体实现如下:
public class SystemUI
public static void fixSystemUI(Activity mActivity)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
//获取最顶层的View
mActivity.getWindow().getDecorView()
.setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN |
View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
mActivity.getWindow().setStatusBarColor(Color.TRANSPARENT);
定义基类BaseActivity,在BaseActivity中的OnCreate()方法中调用:
//沉浸式状态栏实现
SystemUI.fixSystemUI(this);
后边用到的activity页面都可以继承该基类BaseActivity,即可实现沉浸式状态栏。
三、 启动首页出现白屏
导致原因
theme用的是Theme.AppCompat.Light.NoActionBar:
<application
android:name=".application.MyApplication"
android:allowBackup="true"
android:icon="@drawable/logo"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
tools:replace="icon, label, theme">
解决办法
添加一个新的style:
<activity
android:name=".activity.SplashActivity"
android:screenOrientation="portrait"
android:theme="@style/styleSplash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
style中windowIsTranslucent属性设置为true,背景透明:
<style name="styleSplash" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
</style>
以上是关于Android适配刘海屏+沉浸式状态栏+启动页白屏解决方案的主要内容,如果未能解决你的问题,请参考以下文章
Android 屏幕适配异形屏适配 ① ( 异形屏类型:刘海屏水滴屏挖孔屏 | 沉浸式布局刘海屏适配 | 华为手机异形屏适配注意点 )
Android 屏幕适配异形屏适配 ① ( 异形屏类型:刘海屏水滴屏挖孔屏 | 沉浸式布局刘海屏适配 | 华为手机异形屏适配注意点 )