2017-09-03 08:04:18 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 20:24:02 +02: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_video_audio_title">
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/default_resolution_value"
|
|
|
|
android:entries="@array/resolution_list_description"
|
|
|
|
android:entryValues="@array/resolution_list_values"
|
|
|
|
android:key="@string/default_resolution_key"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/default_resolution_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2022-09-23 07:43:26 +02:00
|
|
|
app:iconSpaceReserved="false"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/default_popup_resolution_value"
|
|
|
|
android:entries="@array/resolution_list_description"
|
|
|
|
android:entryValues="@array/resolution_list_values"
|
|
|
|
android:key="@string/default_popup_resolution_key"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/default_popup_resolution_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2022-09-23 07:43:26 +02:00
|
|
|
app:iconSpaceReserved="false"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2018-04-21 18:35:04 +02:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/limit_mobile_data_usage_value"
|
|
|
|
android:entries="@array/limit_data_usage_description_list"
|
|
|
|
android:entryValues="@array/limit_data_usage_values_list"
|
|
|
|
android:key="@string/limit_mobile_data_usage_key"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/limit_mobile_data_usage_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2022-09-23 07:43:26 +02:00
|
|
|
app:iconSpaceReserved="false"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2018-04-21 18:35:04 +02:00
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2017-09-03 08:04:18 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/show_higher_resolutions_key"
|
|
|
|
android:summary="@string/show_higher_resolutions_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/show_higher_resolutions_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/default_video_format_value"
|
|
|
|
android:entries="@array/video_format_description_list"
|
|
|
|
android:entryValues="@array/video_format_values_list"
|
|
|
|
android:key="@string/default_video_format_key"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/default_video_format_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2022-09-23 07:43:26 +02:00
|
|
|
app:iconSpaceReserved="false"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/default_audio_format_value"
|
|
|
|
android:entries="@array/audio_format_description_list"
|
|
|
|
android:entryValues="@array/audio_format_values_list"
|
|
|
|
android:key="@string/default_audio_format_key"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/default_audio_format_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2022-09-23 07:43:26 +02:00
|
|
|
app:iconSpaceReserved="false"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2022-03-01 20:14:40 +01:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/progressive_load_interval_default_value"
|
|
|
|
android:entries="@array/progressive_load_interval_descriptions"
|
|
|
|
android:entryValues="@array/progressive_load_interval_values"
|
|
|
|
android:key="@string/progressive_load_interval_key"
|
|
|
|
android:summary="@string/progressive_load_interval_summary"
|
|
|
|
android:title="@string/progressive_load_interval_title"
|
|
|
|
app:singleLineTitle="false"
|
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
|
2017-09-03 08:04:18 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:layout="@layout/settings_category_header_layout"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/settings_category_player_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false">
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2017-09-03 08:04:18 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/use_external_video_player_key"
|
|
|
|
android:summary="@string/use_external_video_player_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/use_external_video_player_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2017-09-03 08:04:18 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/use_external_audio_player_key"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/use_external_audio_player_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2017-09-03 08:04:18 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/show_play_with_kodi_key"
|
|
|
|
android:summary="@string/show_play_with_kodi_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/show_play_with_kodi_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2021-09-18 19:47:24 +02:00
|
|
|
|
2021-06-08 21:28:49 +02:00
|
|
|
<ListPreference
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:defaultValue="seekbar_preview_thumbnail_high_quality"
|
|
|
|
android:entries="@array/seekbar_preview_thumbnail_type_description"
|
|
|
|
android:entryValues="@array/seekbar_preview_thumbnail_type_key"
|
|
|
|
android:key="@string/seekbar_preview_thumbnail_key"
|
|
|
|
android:title="@string/seekbar_preview_thumbnail_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2022-09-23 07:43:26 +02:00
|
|
|
app:iconSpaceReserved="false"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:layout="@layout/settings_category_header_layout"
|
2020-10-31 20:56:46 +01:00
|
|
|
android:title="@string/settings_category_player_behavior_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-31 20:56:46 +01:00
|
|
|
app:iconSpaceReserved="false">
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2018-01-23 01:40:00 +01:00
|
|
|
<ListPreference
|
2018-02-14 19:33:43 +01:00
|
|
|
android:defaultValue="@string/preferred_open_action_default"
|
|
|
|
android:entries="@array/preferred_open_action_description_list"
|
|
|
|
android:entryValues="@array/preferred_open_action_values_list"
|
|
|
|
android:key="@string/preferred_open_action_key"
|
2018-04-07 20:36:52 +02:00
|
|
|
android:summary="@string/preferred_open_action_settings_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/preferred_open_action_settings_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2018-01-23 01:40:00 +01:00
|
|
|
|
2018-06-03 23:09:16 +02:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/minimize_on_exit_value"
|
|
|
|
android:entries="@array/minimize_on_exit_action_description"
|
|
|
|
android:entryValues="@array/minimize_on_exit_action_key"
|
|
|
|
android:key="@string/minimize_on_exit_key"
|
|
|
|
android:summary="@string/minimize_on_exit_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/minimize_on_exit_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2018-06-03 23:09:16 +02:00
|
|
|
|
2021-01-19 08:13:44 +01:00
|
|
|
<SwitchPreferenceCompat
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/start_main_player_fullscreen_key"
|
|
|
|
android:summary="@string/start_main_player_fullscreen_summary"
|
|
|
|
android:title="@string/start_main_player_fullscreen_title"
|
|
|
|
app:singleLineTitle="false"
|
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
|
2020-01-08 17:16:50 +01:00
|
|
|
<ListPreference
|
2020-10-09 20:24:02 +02:00
|
|
|
android:defaultValue="@string/autoplay_value"
|
|
|
|
android:entries="@array/autoplay_type_description"
|
|
|
|
android:entryValues="@array/autoplay_type_key"
|
|
|
|
android:key="@string/autoplay_key"
|
|
|
|
android:summary="@string/autoplay_summary"
|
|
|
|
android:title="@string/autoplay_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2020-01-08 17:16:50 +01:00
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2018-11-13 17:30:04 +01:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/auto_queue_key"
|
|
|
|
android:summary="@string/auto_queue_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/auto_queue_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2018-11-13 17:30:04 +01:00
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2017-09-03 08:04:18 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/resume_on_audio_focus_gain_key"
|
|
|
|
android:summary="@string/resume_on_audio_focus_gain_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/resume_on_audio_focus_gain_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2017-09-03 08:04:18 +02:00
|
|
|
android:defaultValue="true"
|
2018-08-31 16:00:40 +02:00
|
|
|
android:key="@string/volume_gesture_control_key"
|
|
|
|
android:summary="@string/volume_gesture_control_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/volume_gesture_control_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2018-08-31 16:00:40 +02:00
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2018-08-31 16:00:40 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/brightness_gesture_control_key"
|
|
|
|
android:summary="@string/brightness_gesture_control_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/brightness_gesture_control_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2020-11-15 22:15:00 +01:00
|
|
|
<SwitchPreferenceCompat
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/popup_remember_size_pos_key"
|
|
|
|
android:summary="@string/popup_remember_size_pos_summary"
|
|
|
|
android:title="@string/popup_remember_size_pos_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-11-15 22:15:00 +01:00
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2018-03-03 23:24:21 +01:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/use_inexact_seek_key"
|
|
|
|
android:summary="@string/use_inexact_seek_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/use_inexact_seek_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2019-10-21 15:40:33 +02:00
|
|
|
|
|
|
|
<ListPreference
|
2020-10-09 20:24:02 +02:00
|
|
|
android:defaultValue="@string/seek_duration_default_value"
|
|
|
|
android:entries="@array/seek_duration_description"
|
|
|
|
android:entryValues="@array/seek_duration_value"
|
|
|
|
android:key="@string/seek_duration_key"
|
|
|
|
android:title="@string/seek_duration_title"
|
2021-08-21 18:49:12 +02:00
|
|
|
app:singleLineTitle="false"
|
2022-09-23 07:43:26 +02:00
|
|
|
app:iconSpaceReserved="false"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2020-03-10 10:06:38 +01:00
|
|
|
|
2020-08-27 22:55:57 +02:00
|
|
|
<SwitchPreferenceCompat
|
2020-03-10 10:06:38 +01:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/clear_queue_confirmation_key"
|
|
|
|
android:summary="@string/clear_queue_confirmation_summary"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:title="@string/clear_queue_confirmation_title"
|
2021-08-21 14:21:55 +02:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:iconSpaceReserved="false" />
|
2020-03-10 10:06:38 +01:00
|
|
|
|
2017-09-03 08:04:18 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|