summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'res/values')
-rwxr-xr-xres/values/styles.xml8
-rw-r--r--res/values/themes.xml5
2 files changed, 12 insertions, 1 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml
index c67f043a..888f9d02 100755
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -26,4 +26,12 @@
<style name="Theme.Header.Settings" parent="@android:style/Theme.Material.Settings">
</style>
+
+ <style name="Preference">
+ <item name="android:layout">@layout/preference</item>
+ </style>
+
+ <style name="ActionBar" parent="@android:style/Widget.Material.ActionBar.Solid">
+ <item name="android:contentInsetStart">72dp</item>
+ </style>
</resources>
diff --git a/res/values/themes.xml b/res/values/themes.xml
index 9e8f0298..83ca6ebb 100644
--- a/res/values/themes.xml
+++ b/res/values/themes.xml
@@ -16,7 +16,10 @@
-->
<resources>
- <style name="Settings" parent="@android:style/Theme.Material.Settings" />
+ <style name="Settings" parent="@android:style/Theme.Material.Settings">
+ <item name="android:actionBarStyle">@style/ActionBar</item>
+ <item name="@*android:preferenceStyle">@style/Preference</item>
+ </style>
<style name="GrantPermissions"
parent="@android:style/Theme.Material.DayNight.Dialog.NoActionBar" />