2017-09-03 03:04:18 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
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"
|
|
|
|
android:title="@string/theme_title"/>
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/show_next_video_key"
|
|
|
|
android:title="@string/show_next_and_similar_title"/>
|
|
|
|
|
2017-10-16 18:59:59 -07:00
|
|
|
<SwitchPreference
|
|
|
|
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 13:26:03 -08:00
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/caption_size_default"
|
|
|
|
android:entries="@array/caption_size_descriptions_list"
|
|
|
|
android:entryValues="@array/caption_size_values_list"
|
|
|
|
android:key="@string/caption_size_key"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/caption_font_size_settings_title"/>
|
2017-09-03 03:04:18 -03:00
|
|
|
</PreferenceScreen>
|