2017-09-03 08:04:18 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-03 00:35:44 +01:00
|
|
|
<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
|
|
|
|
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"
|
2020-03-03 00:35:44 +01:00
|
|
|
android:title="@string/theme_title"
|
|
|
|
app:iconSpaceReserved="false" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2020-10-11 13:16:22 +02:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/default_night_theme_value"
|
|
|
|
android:entries="@array/night_theme_description_list"
|
|
|
|
android:entryValues="@array/night_theme_values_list"
|
|
|
|
android:key="@string/night_theme_key"
|
|
|
|
android:summary="@string/night_theme_summary"
|
|
|
|
android:title="@string/night_theme_title"
|
2020-07-03 18:44:34 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2017-10-17 03:59:59 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/show_hold_to_append_key"
|
2020-03-03 00:35:44 +01:00
|
|
|
android:summary="@string/show_hold_to_append_summary"
|
2017-10-17 03:59:59 +02:00
|
|
|
android:title="@string/show_hold_to_append_title"
|
2020-03-03 00:35:44 +01:00
|
|
|
app:iconSpaceReserved="false" />
|
2018-02-09 22:26:03 +01:00
|
|
|
|
2018-08-22 09:14:01 +02:00
|
|
|
<ListPreference
|
|
|
|
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"
|
2020-03-03 00:35:44 +01:00
|
|
|
android:title="@string/list_view_mode"
|
|
|
|
app:iconSpaceReserved="false" />
|
2018-08-22 09:14:01 +02:00
|
|
|
|
2018-04-08 22:58:18 +02:00
|
|
|
<Preference
|
|
|
|
android:key="@string/caption_settings_key"
|
2020-03-03 00:35:44 +01:00
|
|
|
android:summary="@string/caption_setting_description"
|
2018-04-08 22:58:18 +02:00
|
|
|
android:title="@string/caption_setting_title"
|
2020-03-03 00:35:44 +01:00
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
|
2021-04-11 13:29:11 +02:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/tablet_mode_auto_key"
|
|
|
|
android:entries="@array/tablet_mode_description"
|
|
|
|
android:entryValues="@array/tablet_mode_values"
|
|
|
|
android:key="@string/tablet_mode_key"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/tablet_mode_title"
|
|
|
|
app:iconSpaceReserved="false" />
|
2017-09-03 08:04:18 +02:00
|
|
|
</PreferenceScreen>
|