themes: set system bars colors to black

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-02-28 15:42:32 +05:30
parent ad75065848
commit b577ab01ae
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
3 changed files with 11 additions and 3 deletions

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="${applicationId}.test"
android:sharedUserId="${applicationId}.uid">
package="${applicationId}.test"
android:sharedUserId="${applicationId}.uid">
</manifest>

View file

@ -17,7 +17,8 @@
<activity
android:name=".ui.main.MainActivity"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">
android:theme="@style/Platform.Theme.Claw"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Platform.Theme.Claw" parent="Theme.AppCompat.NoActionBar">
<item name="android:statusBarColor">#FF000000</item>
<item name="android:navigationBarColor">#FF000000</item>
</style>
</resources>