diff options
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/autoplay_preferences.xml | 18 | ||||
-rw-r--r-- | app/src/main/res/xml/main_preferences.xml | 8 |
2 files changed, 20 insertions, 6 deletions
diff --git a/app/src/main/res/xml/autoplay_preferences.xml b/app/src/main/res/xml/autoplay_preferences.xml new file mode 100644 index 00000000..6cb07dd9 --- /dev/null +++ b/app/src/main/res/xml/autoplay_preferences.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <ListPreference + app:defaultValue="0" + android:entries="@array/settings_video_autoplay" + app:entryValues="@array/settings_video_autoplay_values" + app:key="video_autoplay" + app:title="@string/settings_video_autoplay_title" + app:useSimpleSummaryProvider="true" /> + + <SwitchPreference + app:defaultValue="true" + app:key="autoplay_nsfw_videos" + app:title="@string/settings_autoplay_nsfw_videos_title" /> + +</PreferenceScreen>
\ No newline at end of file diff --git a/app/src/main/res/xml/main_preferences.xml b/app/src/main/res/xml/main_preferences.xml index 1074a90e..f332a49c 100644 --- a/app/src/main/res/xml/main_preferences.xml +++ b/app/src/main/res/xml/main_preferences.xml @@ -28,13 +28,9 @@ app:key="open_link_in_app" app:title="@string/settings_open_link_in_app_title" /> - <ListPreference - app:defaultValue="0" - android:entries="@array/settings_video_autoplay" - app:entryValues="@array/settings_video_autoplay_values" - app:key="video_autoplay" + <Preference app:title="@string/settings_video_autoplay_title" - app:useSimpleSummaryProvider="true" /> + app:fragment="ml.docilealligator.infinityforreddit.Settings.AutoplayPreferenceFragment" /> <SwitchPreference app:defaultValue="false" |