一棚瘟、制作一個(gè)啟動(dòng)屏的.9圖片
根據(jù)需求做拉伸效果(上左拉伸背景握牧,右下拉伸內(nèi)容)诲泌,保存到drawable
目錄
二合瓢、創(chuàng)建新主題
在res => values => styles.xml
下創(chuàng)建如下主題(如:AppTheme.StartingWindowTheme
)
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@android:color/transparent</item>
<item name="android:itemBackground">@color/backgroundColor</item>
</style>
<!-- 應(yīng)用啟動(dòng)頁(StartingWindow)的theme -->
<style name="AppTheme.StartingWindowTheme" parent="AppTheme">
<!-- 可以設(shè)置成純顏色(設(shè)置一個(gè)和Activity UI相似的背景) -->
<!--<item name="android:windowBackground">@color/startingwindow_bgcolor</item>-->
<!--也可以設(shè)置成一張圖片 -->
<item name="android:windowBackground">@drawable/ic_launcher_screen</item>
<item name="android:windowFullscreen">true</item>
</style>
三市俊、在AndroidManifest.xml
使用該主題
在系統(tǒng)啟動(dòng)的第一個(gè)activity
中使用該主題
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ak.aigo">
<application
android:name=".app.AiGoApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launchera"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".ui.splash.SplashActivity"
android:theme="@style/AppTheme.StartingWindowTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>