修改背景细节

This commit is contained in:
2024-10-13 05:57:25 +08:00
parent 20a34b569a
commit fab1e0206d
17 changed files with 70 additions and 28 deletions

View File

@@ -7,5 +7,6 @@
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
<color name="activity_background">#FFFFFFFF</color>
<color name="splash_background">#ED1C24</color>
</resources>

View File

@@ -2,11 +2,15 @@
<resources>
<style name="Theme.RiderPro" parent="android:Theme.Material.Light.NoActionBar" >
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@color/activity_background</item>
</style>
<style name="Theme.App.Starting" parent="Theme.SplashScreen">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
<item name="windowSplashScreenBackground">@color/splash_background</item>
<item name="windowSplashScreenAnimatedIcon">@mipmap/rider_pro_logo_red_round</item>
<item name="postSplashScreenTheme">@style/Theme.RiderPro</item>
<item name="android:windowBackground">@color/activity_background</item>
</style>
</resources>