2017-09-03 08:04:18 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-02-09 00:33:35 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-09-03 08:04:18 +02:00
|
|
|
android:title="@string/settings_category_appearance_title">
|
|
|
|
|
|
|
|
<ListPreference
|
2019-02-09 00:33:35 +01:00
|
|
|
app:iconSpaceReserved="false"
|
2017-09-03 08:04:18 +02:00
|
|
|
android:defaultValue="@string/default_theme_value"
|
|
|
|
android:entries="@array/theme_description_list"
|
|
|
|
android:entryValues="@array/theme_values_list"
|
|
|
|
android:key="@string/theme_key"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/theme_title"/>
|
|
|
|
|
2017-10-17 03:59:59 +02:00
|
|
|
<SwitchPreference
|
2019-02-09 00:33:35 +01:00
|
|
|
app:iconSpaceReserved="false"
|
2017-10-17 03:59:59 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/show_hold_to_append_key"
|
|
|
|
android:title="@string/show_hold_to_append_title"
|
|
|
|
android:summary="@string/show_hold_to_append_summary"/>
|
2018-02-09 22:26:03 +01:00
|
|
|
|
2018-08-22 09:14:01 +02:00
|
|
|
<ListPreference
|
2019-02-09 00:33:35 +01:00
|
|
|
app:iconSpaceReserved="false"
|
2018-08-22 09:14:01 +02:00
|
|
|
android:defaultValue="@string/list_view_mode_value"
|
|
|
|
android:entries="@array/list_view_mode_description"
|
|
|
|
android:entryValues="@array/list_view_mode_values"
|
|
|
|
android:key="@string/list_view_mode_key"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/list_view_mode"/>
|
|
|
|
|
2018-04-08 22:58:18 +02:00
|
|
|
<Preference
|
2019-02-09 00:33:35 +01:00
|
|
|
app:iconSpaceReserved="false"
|
2018-04-08 22:58:18 +02:00
|
|
|
android:key="@string/caption_settings_key"
|
|
|
|
android:title="@string/caption_setting_title"
|
|
|
|
android:summary="@string/caption_setting_description"/>
|
2018-06-16 11:51:43 +02:00
|
|
|
|
2017-09-03 08:04:18 +02:00
|
|
|
</PreferenceScreen>
|