有没有办法根据应用程序主题更改启动屏幕之前的空白屏幕颜色?

phi*_*hil 5 android splash-screen android-layout android-theme

我想根据应用程序主题更改空白屏幕背景颜色,例如。如果应用程序主题处于浅色模式,那么它应该带有白色背景。如果应用程序主题是深色主题,那么它应该带有黑色背景,它不应该基于设备主题。

提前致谢!!!

小智 5

在您的基本应用程序主题中,添加项目android:windowBackground并将其值设置为您想要的颜色。

这是一个例子

<!-- Base application theme. -->
<style name="Theme.MyApp" parent="Theme.MaterialComponents.DayNight.NoActionBar">
    <!-- Other theme customizations -->


    <!-- Add this line and set value to your desired color -->
    <item name="android:windowBackground">@color/colorBlack</item>
</style>
Run Code Online (Sandbox Code Playgroud)