feat: 添加启动屏幕图像和主题样式;优化 H5 壳的封面隐藏逻辑

This commit is contained in:
Booker
2026-05-26 22:48:47 +07:00
parent bd3ccf7f2d
commit bb720b227e
12 changed files with 93 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LaunchTheme" parent="@android:style/Theme.Material.Light.NoActionBar">
<item name="android:windowBackground">@drawable/launch_background</item>
<item name="android:windowSplashScreenBackground">#F8FBFF</item>
<item name="android:windowSplashScreenAnimatedIcon">@drawable/splash_android12_icon</item>
<item name="android:windowSplashScreenIconBackgroundColor">#F8FBFF</item>
</style>
<style name="NormalTheme" parent="@android:style/Theme.Material.Light.NoActionBar">
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
</resources>