Android啟動頁,歡迎頁Splash頁面溪厘,劉海全面屏沉浸式白屏
隨著iPhone X的發(fā)布胡本,一眾Android廠商也開始跟風(fēng)推出自己的劉海屏,全面屏手機畸悬,整個手機行業(yè)已經(jīng)從傳統(tǒng)的16:9逐漸往18:9侧甫,18.5:9等屏幕比例過渡,其中也給我們開發(fā)著帶來了一個比較棘手的問題,那就是Splash Screen對全面屏手機的適配問題披粟。市面上通用的方案就是創(chuàng)建適配多種分辨率的drawable文件夾咒锻,這種方案有缺點明顯,不能完美的適配各種寬高比的屏幕守屉。于是乎就有了下面這種方案就是使用layer-list來進行適配惑艇,先看效果:
16:9屏幕全面屏不帶劉海全面屏帶劉海
在drawable目錄創(chuàng)建一個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創(chuàng)建一個theme
@drawable/splash
true
在values-v21中為SplashActivity創(chuàng)建一個和SplashTheme同名的一個theme
創(chuàng)建這個theme的主要目的是為了適配有navigation bar的手機胸梆,不讓windowBackground延申到navigationBar的區(qū)域內(nèi)
@drawable/splash
true
<!--不讓windowBackground延申到navigation bar區(qū)域-->
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圖,占位"/>
需解決的問題是讓布局延申到劉海(狀態(tài)欄)區(qū)域习瑰,方法如下:
針對Android p绪颖,在values-v28中為SplashActivity創(chuàng)建一個和SplashTheme同名的一個theme,
@drawable/splash
true
<!--不讓windowBackground延申到navigation bar區(qū)域-->
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);
//將狀態(tài)欄設(shè)成透明甜奄,如不想透明可設(shè)置其他顏色
window.setStatusBarColor(ContextCompat.getColor(this, android.R.color.transparent));
}
華為手機
在AndroidManifest.xml中的SplashActivity的節(jié)點添加如下meta-data
轉(zhuǎn)載:http://www.reibang.com/p/105885c44e49