You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.5 KiB
68 lines
2.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:key="ui_category"
|
|
android:title="@string/interface_prefs_screen">
|
|
|
|
<androidx.preference.SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:key="enable_black_theme"
|
|
android:summary="@string/enable_black_theme_summary"
|
|
android:title="@string/enable_black_theme"
|
|
android:disableDependentsState="true" />
|
|
|
|
<androidx.preference.SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:key="daynight"
|
|
android:dependency="enable_black_theme"
|
|
android:summary="@string/daynight_summary"
|
|
android:title="@string/daynight_title" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="tv_ui"
|
|
android:summary="@string/tv_ui_summary"
|
|
android:title="@string/tv_ui_title" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="playback_speed"
|
|
android:summary="@string/playback_speed_summary"
|
|
android:title="@string/playback_speed_title" />
|
|
|
|
<ListPreference
|
|
android:defaultValue=""
|
|
android:key="set_locale"
|
|
android:title="@string/set_locale" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="resume_playback"
|
|
android:summary="@string/resume_playback_summary"
|
|
android:title="@string/resume_playback_title" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="browser_show_all_files"
|
|
android:summary="@string/browser_show_all_summary"
|
|
android:title="@string/browser_show_all_title" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="blurred_cover_background"
|
|
android:summary="@string/blurred_cover_background_summary"
|
|
android:title="@string/blurred_cover_background_title" />
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/interface_secondary_display_category_title"
|
|
android:key="secondary_display_category">
|
|
<Preference
|
|
android:summary="@string/interface_secondary_display_category_summary"
|
|
android:key="secondary_display_category_summary" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="enable_clone_mode"
|
|
android:summary="@string/enable_clone_mode_summary"
|
|
android:title="@string/enable_clone_mode" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|
|
|