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"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<?xml version = "1.0" encoding = "utf-8" ?>
|
||||
<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
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.Zanbur">
|
||||
android:icon = "@mipmap/ic_launcher"
|
||||
android:label = "@string/app_name"
|
||||
android:roundIcon = "@mipmap/ic_launcher_round"
|
||||
android:supportsRtl = "true"
|
||||
android:theme = "@style/Theme.Zanbur" >
|
||||
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:exported="true"
|
||||
android:label="@string/title_activity_main"
|
||||
android:theme="@style/Theme.Zanbur">
|
||||
android:name = ".MainActivity"
|
||||
android:exported = "true"
|
||||
android:label = "@string/title_activity_main"
|
||||
android:theme = "@style/Theme.Zanbur" >
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<action android:name = "android.intent.action.MAIN" />
|
||||
<category android:name = "android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
|
||||
</activity>
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
<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>
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
<resources>
|
||||
|
||||
<style
|
||||
name="Theme.Zanbur"
|
||||
parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
||||
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item>
|
||||
name = "Theme.Zanbur"
|
||||
parent = "Theme.Material3.DayNight" >
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
|
|
Loading…
Add table
Reference in a new issue