備註:
這裏是開發跨平臺App時,適配Android啓動屏幕,主要爲了防止白屏。玩Android開源App 每每咱們在開發Android的時候會出現白屏等等,主要緣由就是啓動時須要加載的資源過多,從而影響了Android啓動,Google建議的啓動方式:www.google.com/design/spec…,若是可以翻越圍牆的同窗能夠看一下😏 好了咱們下面就直接說明了php
res/drawable
下建立一個bg_splash.xml
文件,並寫下下面的內容其中@drawable/splas
是一張圖片,來自drawable
文件夾下 其中@color/gray
是灰色,來自colors.xml
文件html
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/gray" />
<item>
<bitmap android:src="@drawable/splash" />
</item>
</layer-list>
複製代碼
styles.xml
文件下建立SplashTheme的主題,引入bg_splash
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> </style>
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar"> <item name="android:windowBackground">@drawable/bg_splash</item> </style>
</resources>
複製代碼
SplashTheme
,以下
<activity android:name=".SplashActivity" android:theme="@style/SplashTheme">
android:noHistory="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
複製代碼
最終就完成了 在SplashActivity
中,你能夠setContentView
加載View,也能夠不用 參考資源:https://www.bignerdranch.com/blog/splash-screens-the-right-way/
android