不对呀,那我要在白屏的设置背景图用的
时间: 2024-03-02 07:49:53 浏览: 66
使用css的background:url设置背景图方法
抱歉,我理解错误了。如果你想在白屏的时候设置背景图,可以在 SplashTheme 中的 android:windowBackground 属性中设置你想要的背景图。例如:
```
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/start_bg</item>
</style>
```
其中,@drawable/start_bg 表示设置启动页的背景图为 @drawable 目录下的 start_bg 图片。你可以将这个属性设置为你想要的任何 Drawable,包括颜色或其他图像。
阅读全文