Android啓動界面優化技巧-Splash Screens的正確方式

備註:這裏是開發跨平臺App時,適配Android啓動屏幕,主要爲了防止白屏。玩Android開源App 每每咱們在開發Android的時候會出現白屏等等,主要緣由就是啓動時須要加載的資源過多,從而影響了Android啓動,Google建議的啓動方式:www.google.com/design/spec…,若是可以翻越圍牆的同窗能夠看一下😏 好了咱們下面就直接說明了php

1. 在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>
複製代碼

2. 在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>
複製代碼

3.在你的啓動界面中引入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

相關文章
相關標籤/搜索