解决app启动时,白屏问题。

时间:2021-04-10 17:01:00

1.在res/values/style.xml文件下。

 <style name="FirstAppTheme" parent="android:Theme.Light">
<item name="android:windowBackground">@mipmap/startimg</item><!--启动图片 -->
<item name="android:windowNoTitle">true</item>

</style>

2.在AndroidManifest.xml引用

  <!--欢迎页-->
<activity
android:name=".activity.WelComeAc"
android:screenOrientation="portrait"
android:theme="@style/FirstAppTheme">

<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

3.Activity里的布局文件不需要另外设置背景图片空白布局就行。