Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstefan-niedermann <info@niedermann.it>2020-01-25 13:18:25 +0300
committerstefan-niedermann <info@niedermann.it>2020-01-25 13:18:25 +0300
commit213174d6cae08a249f1e5687d224c914b208a2eb (patch)
tree99092240e1a30fe498a765ff8b5e6e7e27677361 /app/src/main/res/xml
parent0d27086f9a00e2f3e28e35dc0340c98fe72e0cb7 (diff)
#466 Header title not aligned
Use custom layout for preference items to align text to title
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r--app/src/main/res/xml/preferences.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml
index db4f57e2..d1668a87 100644
--- a/app/src/main/res/xml/preferences.xml
+++ b/app/src/main/res/xml/preferences.xml
@@ -7,6 +7,7 @@
android:entryValues="@array/noteMode_values"
android:icon="@drawable/ic_remove_red_eye_grey_24dp"
android:key="@string/pref_key_note_mode"
+ android:layout="@layout/item_pref"
android:summary="%s"
android:title="@string/settings_note_mode" />
@@ -14,12 +15,14 @@
android:defaultValue="@string/pref_value_theme_light"
android:icon="@drawable/ic_brightness_2_grey_24dp"
android:key="@string/pref_key_theme"
+ android:layout="@layout/item_pref"
android:title="@string/settings_theme_title" />
<SwitchPreference
android:defaultValue="@string/pref_value_font_normal"
android:icon="@drawable/ic_text_fields_black_24dp"
android:key="@string/pref_key_font"
+ android:layout="@layout/item_pref"
android:title="@string/settings_font_title" />
<ListPreference
@@ -28,6 +31,7 @@
android:entryValues="@array/fontSize_values"
android:icon="@drawable/ic_format_size_black_24dp"
android:key="@string/pref_key_font_size"
+ android:layout="@layout/item_pref"
android:summary="%s"
android:title="@string/settings_font_size" />
@@ -35,6 +39,7 @@
android:defaultValue="@string/pref_value_wifi_and_mobile"
android:icon="@drawable/ic_sync_black_24dp"
android:key="@string/pref_key_wifi_only"
+ android:layout="@layout/item_pref"
android:title="@string/settings_wifi_only" />
</PreferenceScreen>