mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-02-07 20:59:13 +01:00
Remove Holo theme remainees from the app
This commit is contained in:
parent
0ea27cbfbd
commit
0144b0b02d
|
@ -10,13 +10,13 @@
|
||||||
|
|
||||||
<application android:name="org.petero.droidfish.DroidFishApp"
|
<application android:name="org.petero.droidfish.DroidFishApp"
|
||||||
android:icon="@mipmap/icon"
|
android:icon="@mipmap/icon"
|
||||||
android:theme="@android:style/Theme.Holo"
|
android:theme="@style/AppTheme"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:resizeableActivity="true">
|
android:resizeableActivity="true">
|
||||||
<activity android:name=".DroidFish"
|
<activity android:name=".DroidFish"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:theme="@android:style/Theme.Holo.NoActionBar"
|
android:theme="@style/MainActivityTheme"
|
||||||
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
|
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
|
12
DroidFishApp/src/main/res/values/styles.xml
Normal file
12
DroidFishApp/src/main/res/values/styles.xml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<style name="AppTheme" parent="Theme.AppCompat">
|
||||||
|
<item name="colorPrimary">#000000</item>
|
||||||
|
<item name="colorPrimaryDark">#000000</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="MainActivityTheme" parent="Theme.AppCompat.NoActionBar">
|
||||||
|
<item name="colorPrimary">#000000</item>
|
||||||
|
<item name="colorPrimaryDark">#000000</item>
|
||||||
|
</style>
|
||||||
|
</resources>
|
Loading…
Reference in New Issue
Block a user