Android启动页,欢迎页Splash页面,刘海全面屏沉浸式白屏
随着iPhone X的发布,一众Android厂商也开始跟风推出自己的刘海屏,全面屏手机,整个手机行业已经从传统的16:9逐渐往18:9,18.5:9等屏幕比例过渡,其中也给我们开发着带来了一个比较棘手的问题,那就是Splash Screen对全面屏手机的适配问题。市面上通用的方案就是创建适配多种分辨率的drawable文件夹,这种方案有缺点明显,不能完美的适配各种宽高比的屏幕。于是乎就有了下面这种方案就是使用layer-list来进行适配,先看效果:
16:9屏幕全面屏不带刘海全面屏带刘海
在drawable目录创建一个layer-list,如splash.xml
<?xml version="1.0"encoding="utf-8"?>
<!-- 背景颜色 -->
<!--注意此处的bottom要和activity_splash.xml中的logo图marginBottom的值保持一致-->
<!-- 图片 -->
android:gravity="center|bottom"
android:src="@drawable/splash_logo"/>
在style.xml中为SplashActivity创建一个theme
@drawable/splash
true
在values-v21中为SplashActivity创建一个和SplashTheme同名的一个theme
创建这个theme的主要目的是为了适配有navigation bar的手机,不让windowBackground延申到navigationBar的区域内
@drawable/splash
true
<!--不让windowBackground延申到navigation bar区域-->
false
在AndroidManifest.xml中定义SplashActivity的theme为SplashTheme
android:name=".SplashActivity"
android:theme="@style/SplashTheme">
需注意的是logo占位图的marginBottom要与上面layer-list中的bottom属性的值保持一致,这就可视觉上和windowBackground中的logo的位置保持完全一致。使得下面的logo在任意一种屏幕下都能保持居中的位置。
<?xml version="1.0"encoding="utf-8"?>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:id="@+id/iv_ad"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:contentDescription="广告图"
android:scaleType="centerCrop"
android:src="@drawable/ad_img"/>
android:id="@+id/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="40dp"
android:layout_marginBottom="40dp"
android:src="@drawable/splash_logo"
android:contentDescription="logo图,占位"/>
需解决的问题是让布局延申到刘海(状态栏)区域,方法如下:
针对Android p,在values-v28中为SplashActivity创建一个和SplashTheme同名的一个theme,
@drawable/splash
true
<!--不让windowBackground延申到navigation bar区域-->
false
<!--适配Android P刘海屏-->
shortEdges
SplashActivity的onCreate中
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
View decorView = window.getDecorView();
decorView.setOnApplyWindowInsetsListener(new View.OnApplyWindowInsetsListener() {
@TargetApi(Build.VERSION_CODES.KITKAT_WATCH)
@Override
publicWindowInsets onApplyWindowInsets(View v, WindowInsets insets) {
WindowInsets defaultInsets = v.onApplyWindowInsets(insets);
returndefaultInsets.replaceSystemWindowInsets(
defaultInsets.getSystemWindowInsetLeft(),
0,
defaultInsets.getSystemWindowInsetRight(),
defaultInsets.getSystemWindowInsetBottom());
}
});
ViewCompat.requestApplyInsets(decorView);
//将状态栏设成透明,如不想透明可设置其他颜色
window.setStatusBarColor(ContextCompat.getColor(this, android.R.color.transparent));
}
华为手机
在AndroidManifest.xml中的SplashActivity的节点添加如下meta-data