XML formatting, remove theme statusBarColor
This commit is contained in:
parent
cb07139815
commit
46aebc779e
3 changed files with 22 additions and 19 deletions
|
@ -1,24 +1,24 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version = "1.0" encoding = "utf-8" ?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
<manifest xmlns:android = "http://schemas.android.com/apk/res/android" >
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name = "android.permission.INTERNET" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon = "@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label = "@string/app_name"
|
||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
android:roundIcon = "@mipmap/ic_launcher_round"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl = "true"
|
||||||
android:theme="@style/Theme.Zanbur">
|
android:theme = "@style/Theme.Zanbur" >
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name = ".MainActivity"
|
||||||
android:exported="true"
|
android:exported = "true"
|
||||||
android:label="@string/title_activity_main"
|
android:label = "@string/title_activity_main"
|
||||||
android:theme="@style/Theme.Zanbur">
|
android:theme = "@style/Theme.Zanbur" >
|
||||||
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name = "android.intent.action.MAIN" />
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name = "android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
</activity>
|
</activity>
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">Zanbur</string>
|
|
||||||
<string name="title_activity_main">Zanbur</string>
|
<string name = "app_name" >Zanbur</string>
|
||||||
|
<string name = "title_activity_main" >Zanbur</string>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
<resources>
|
<resources>
|
||||||
|
|
||||||
<style
|
<style
|
||||||
name="Theme.Zanbur"
|
name = "Theme.Zanbur"
|
||||||
parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
parent = "Theme.Material3.DayNight" >
|
||||||
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item>
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue