2022-05-15 18:38:32 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-11-05 21:15:34 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2022-05-15 18:38:32 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/baseline_sync_24"
|
|
|
|
android:summary="@string/episode_sync_settings_des"
|
|
|
|
android:title="@string/episode_sync_settings"
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="@string/episode_sync_enabled_key" />
|
2022-05-15 18:38:32 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_defaults">
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_baseline_hd_24"
|
|
|
|
android:key="@string/quality_pref_key"
|
|
|
|
android:title="@string/watch_quality_pref" />
|
2023-02-24 18:51:03 +00:00
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_baseline_hd_24"
|
|
|
|
android:key="@string/quality_pref_mobile_data_key"
|
|
|
|
android:title="@string/watch_quality_pref_data" />
|
2022-05-15 18:38:32 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/netflix_play"
|
|
|
|
android:key="@string/player_pref_key"
|
|
|
|
android:title="@string/player_pref" />
|
|
|
|
</PreferenceCategory>
|
2022-10-05 22:14:42 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_player_layout">
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_baseline_text_format_24"
|
|
|
|
android:key="@string/prefer_limit_title_key"
|
|
|
|
android:title="@string/limit_title" />
|
2022-05-15 18:38:32 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_baseline_text_format_24"
|
|
|
|
android:key="@string/prefer_limit_title_rez_key"
|
|
|
|
android:title="@string/limit_title_rez" />
|
|
|
|
</PreferenceCategory>
|
2022-05-15 18:38:32 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_subtitles">
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_outline_subtitles_24"
|
|
|
|
android:key="@string/subtitle_settings_key"
|
|
|
|
android:title="@string/player_subtitles_settings"
|
|
|
|
app:summary="@string/player_subtitles_settings_des" />
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_outline_subtitles_24"
|
|
|
|
android:key="@string/subtitle_settings_chromecast_key"
|
|
|
|
android:title="@string/chromecast_subtitles_settings"
|
|
|
|
app:summary="@string/chromecast_subtitles_settings_des" />
|
|
|
|
</PreferenceCategory>
|
2022-05-15 18:38:32 +00:00
|
|
|
|
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_player_features">
|
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/ic_baseline_picture_in_picture_alt_24"
|
|
|
|
android:summary="@string/picture_in_picture_des"
|
|
|
|
android:title="@string/picture_in_picture"
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="@string/pip_enabled_key" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/ic_baseline_aspect_ratio_24"
|
|
|
|
android:summary="@string/player_size_settings_des"
|
|
|
|
android:title="@string/player_size_settings"
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="@string/player_resize_enabled_key" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/ic_baseline_speed_24"
|
|
|
|
android:summary="@string/eigengraumode_settings_des"
|
|
|
|
android:title="@string/eigengraumode_settings"
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="@string/playback_speed_enabled_key" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/ic_baseline_skip_next_24"
|
|
|
|
android:summary="@string/autoplay_next_settings_des"
|
|
|
|
android:title="@string/autoplay_next_settings"
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="@string/autoplay_next_key" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/ic_baseline_skip_next_24"
|
|
|
|
android:title="@string/video_skip_op"
|
|
|
|
app:defaultValue="true"
|
|
|
|
android:summary="@string/enable_skip_op_from_database_des"
|
|
|
|
app:key="@string/enable_skip_op_from_database" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_gestures">
|
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/ic_baseline_ondemand_video_24"
|
|
|
|
android:summary="@string/swipe_to_seek_settings_des"
|
|
|
|
android:title="@string/swipe_to_seek_settings"
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="@string/swipe_enabled_key" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/ic_baseline_ondemand_video_24"
|
|
|
|
android:summary="@string/swipe_to_change_settings_des"
|
|
|
|
android:title="@string/swipe_to_change_settings"
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="@string/swipe_vertical_enabled_key" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/ic_baseline_touch_app_24"
|
|
|
|
android:summary="@string/double_tap_to_seek_settings_des"
|
|
|
|
android:title="@string/double_tap_to_seek_settings"
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="@string/double_tap_enabled_key" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:icon="@drawable/netflix_pause"
|
|
|
|
android:summary="@string/double_tap_to_pause_settings_des"
|
|
|
|
android:title="@string/double_tap_to_pause_settings"
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="@string/double_tap_pause_enabled_key" />
|
|
|
|
|
|
|
|
<SeekBarPreference
|
|
|
|
android:defaultValue="10"
|
|
|
|
android:max="60"
|
|
|
|
android:title="@string/double_tap_to_seek_amount_settings"
|
|
|
|
app:adjustable="true"
|
|
|
|
app:defaultValue="10"
|
|
|
|
app:icon="@drawable/go_forward_30"
|
|
|
|
app:key="@string/double_tap_seek_time_key"
|
|
|
|
app:min="5"
|
|
|
|
app:seekBarIncrement="5"
|
|
|
|
app:showSeekBarValue="true" />
|
|
|
|
</PreferenceCategory>
|
2022-05-15 18:38:32 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_cache">
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_baseline_storage_24"
|
|
|
|
android:key="@string/video_buffer_disk_key"
|
|
|
|
android:summary="@string/video_disk_description"
|
|
|
|
android:title="@string/video_buffer_disk_settings" />
|
2022-05-15 18:38:32 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_baseline_storage_24"
|
|
|
|
android:key="@string/video_buffer_size_key"
|
|
|
|
android:summary="@string/video_ram_description"
|
|
|
|
android:title="@string/video_buffer_size_settings" />
|
2022-05-15 18:38:32 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_baseline_storage_24"
|
|
|
|
android:key="@string/video_buffer_length_key"
|
|
|
|
android:summary="@string/video_ram_description"
|
|
|
|
android:title="@string/video_buffer_length_settings" />
|
2022-05-15 18:38:32 +00:00
|
|
|
|
2022-12-23 19:50:05 +00:00
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_baseline_delete_outline_24"
|
|
|
|
android:key="@string/video_buffer_clear_key"
|
|
|
|
android:title="@string/video_buffer_clear_settings" />
|
|
|
|
</PreferenceCategory>
|
2023-02-08 15:46:39 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_android_tv">
|
|
|
|
<SeekBarPreference
|
|
|
|
android:defaultValue="10"
|
|
|
|
android:max="60"
|
|
|
|
android:title="@string/android_tv_interface_on_seek_settings"
|
|
|
|
android:summary="@string/android_tv_interface_on_seek_settings_summary"
|
|
|
|
app:adjustable="true"
|
|
|
|
app:defaultValue="30"
|
|
|
|
app:icon="@drawable/go_forward_30"
|
|
|
|
app:key="@string/android_tv_interface_on_seek_key"
|
|
|
|
app:min="5"
|
|
|
|
app:seekBarIncrement="5"
|
|
|
|
app:showSeekBarValue="true" />
|
|
|
|
<SeekBarPreference
|
|
|
|
android:defaultValue="10"
|
|
|
|
android:max="60"
|
|
|
|
android:title="@string/android_tv_interface_off_seek_settings"
|
|
|
|
android:summary="@string/android_tv_interface_off_seek_settings_summary"
|
|
|
|
app:adjustable="true"
|
|
|
|
app:defaultValue="10"
|
|
|
|
app:icon="@drawable/go_forward_30"
|
|
|
|
app:key="@string/android_tv_interface_off_seek_key"
|
|
|
|
app:min="5"
|
|
|
|
app:seekBarIncrement="5"
|
|
|
|
app:showSeekBarValue="true" />
|
|
|
|
</PreferenceCategory>
|
2022-05-15 18:38:32 +00:00
|
|
|
</PreferenceScreen>
|