如何在定制的启动画面中更改背景颜色?

问题描述 投票:1回答:1

为了删除默认的白色启动画面,我制作了一个自定义主题:

styles.xml

 <style name="AppTheme.SplashTheme">
        <item name="android:windowBackground">@drawable/splash_screen</item>
  </style>

splash_screen.xml

<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:opacity="opaque">

<!--<item android:drawable="?colorPrimary" />-->
<item>
    <bitmap
        android:gravity="center"
        android:src="@drawable/wq_logo" />
</item>
</layer-list>

一切正常,但我想更改其背景颜色。当前显示紫色背景。我要把它弄成白色。在此应用中,我使用的是导航抽屉布局。

java android xml xamarin.android splash-screen
1个回答
5
投票

像这样更改splash_screen.xml

© www.soinside.com 2019 - 2024. All rights reserved.