2017-09-03 06:04:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-02 23:35:44 +00:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-02-08 23:33:35 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-09-03 06:04:18 +00: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-02 23:35:44 +00:00
|
|
|
android:title="@string/theme_title"
|
2021-08-21 16:49:12 +00:00
|
|
|
app:singleLineTitle="false"
|
2020-03-02 23:35:44 +00:00
|
|
|
app:iconSpaceReserved="false" />
|
2017-09-03 06:04:18 +00:00
|
|
|
|
2020-10-11 11:16:22 +00: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"
|
2021-08-21 16:49:12 +00:00
|
|
|
app:singleLineTitle="false"
|
2020-07-03 16:44:34 +00:00
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
|
2020-08-27 20:55:57 +00:00
|
|
|
<SwitchPreferenceCompat
|
2017-10-17 01:59:59 +00:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/show_hold_to_append_key"
|
2020-03-02 23:35:44 +00:00
|
|
|
android:summary="@string/show_hold_to_append_summary"
|
2017-10-17 01:59:59 +00:00
|
|
|
android:title="@string/show_hold_to_append_title"
|
2021-08-21 12:21:55 +00:00
|
|
|
app:singleLineTitle="false"
|
2020-03-02 23:35:44 +00:00
|
|
|
app:iconSpaceReserved="false" />
|
2018-02-09 21:26:03 +00:00
|
|
|
|
2018-08-22 07:14:01 +00: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-02 23:35:44 +00:00
|
|
|
android:title="@string/list_view_mode"
|
2021-08-21 16:49:12 +00:00
|
|
|
app:singleLineTitle="false"
|
2020-03-02 23:35:44 +00:00
|
|
|
app:iconSpaceReserved="false" />
|
2018-08-22 07:14:01 +00:00
|
|
|
|
2018-04-08 20:58:18 +00:00
|
|
|
<Preference
|
|
|
|
android:key="@string/caption_settings_key"
|
2020-03-02 23:35:44 +00:00
|
|
|
android:summary="@string/caption_setting_description"
|
2018-04-08 20:58:18 +00:00
|
|
|
android:title="@string/caption_setting_title"
|
2021-08-21 16:49:12 +00:00
|
|
|
app:singleLineTitle="false"
|
2020-03-02 23:35:44 +00:00
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
|
2021-04-11 11:29:11 +00: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"
|
2021-08-21 16:49:12 +00:00
|
|
|
app:singleLineTitle="false"
|
2021-04-11 11:29:11 +00:00
|
|
|
app:iconSpaceReserved="false" />
|
2017-09-03 06:04:18 +00:00
|
|
|
</PreferenceScreen>
|