热门搜索 :
考研考公
您的当前位置:首页正文

Android启动界面优化技巧-Splash Screens的正

来源:东饰资讯网

1. 在res/drawable下创建一个bg_splash.xml文件,并写下下面的内容

其中@drawable/splas是一张图片,来自drawable文件夹下
其中@color/gray是灰色,来自colors.xml文件

<?xml version="1.0" encoding="utf-8"?>
<layer-list 
    <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>
Top