Make status bar black with white text

This commit is contained in:
Joscha 2025-01-26 16:36:52 +01:00
parent 066d6c658e
commit 07a2dc8c5d
2 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,7 @@
<resources xmlns:tools="http://schemas.android.com/tools"> <resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. --> <!-- Base application theme. -->
<style name="Theme.gdn_app" parent="Theme.MaterialComponents.DayNight.NoActionBar"> <style name="Theme.gdn_app" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Customize your theme here. --> <item name="colorPrimary">@color/white</item>
<item name="colorPrimaryDark">@color/black</item>
</style> </style>
</resources> </resources>

View file

@ -1,8 +1,9 @@
<resources xmlns:tools="http://schemas.android.com/tools"> <resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. --> <!-- Base application theme. -->
<style name="Theme.gdn_app" parent="Theme.MaterialComponents.DayNight.NoActionBar"> <style name="Theme.gdn_app" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Customize your theme here. --> <!-- background color of the icon in the multitasking view -->
<item name="colorPrimary">@color/white</item> <item name="colorPrimary">@color/white</item>
<item name="android:statusBarColor">@color/black</item> <!-- background color of the status bar -->
<item name="colorPrimaryDark">@color/black</item>
</style> </style>
</resources> </resources>