TranslucentStatusBar by default.

This commit is contained in:
henry.yao
2023-05-15 09:07:08 +08:00
parent 24747eaab8
commit e333ef56c9
2 changed files with 9 additions and 1 deletions

View File

@@ -3,6 +3,8 @@
<style name="AppTheme.NoActionBar"> <style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item> <item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item> <item name="windowNoTitle">true</item>
<item name="android:statusBarColor">#000</item> <!--Android 5.x should set statusBarColor with transparent, or statusBar will be grey-->
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowTranslucentStatus">true</item>
</style> </style>
</resources> </resources>

View File

@@ -14,11 +14,17 @@
<style name="AppTheme.NoActionBar"> <style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item> <item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item> <item name="windowNoTitle">true</item>
<!--Android 5.x should set statusBarColor with transparent, or statusBar will be grey-->
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowTranslucentStatus">true</item>
</style> </style>
<style name="AppTheme.SplashScreen" parent="Theme.SplashScreen"> <style name="AppTheme.SplashScreen" parent="Theme.SplashScreen">
<item name="windowSplashScreenAnimatedIcon">@drawable/gotify_splash</item> <item name="windowSplashScreenAnimatedIcon">@drawable/gotify_splash</item>
<item name="postSplashScreenTheme">@style/AppTheme.NoActionBar</item> <item name="postSplashScreenTheme">@style/AppTheme.NoActionBar</item>
<!--Android 5.x should set statusBarColor with transparent, or statusBar will be grey-->
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowTranslucentStatus">true</item>
</style> </style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.Material3.Dark" /> <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.Material3.Dark" />