diff options
author | ByteHamster <info@bytehamster.com> | 2019-06-14 00:38:34 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2019-06-14 00:38:34 +0200 |
commit | 8f11f8a27149ce3a25bed7c2f97a0e03301929f1 (patch) | |
tree | 1e9480855c14ae39c7da3f7c8dccc2990968d92d /app/src/main/res/xml | |
parent | 8931d5b795a9a8114f5ee9d404ad9e44e4b1e8f2 (diff) | |
download | AntennaPod-8f11f8a27149ce3a25bed7c2f97a0e03301929f1.zip |
Updated feed settings screen
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/feed_settings.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app/src/main/res/xml/feed_settings.xml b/app/src/main/res/xml/feed_settings.xml new file mode 100644 index 000000000..f798b40d1 --- /dev/null +++ b/app/src/main/res/xml/feed_settings.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<PreferenceScreen + xmlns:android="http://schemas.android.com/apk/res/android"> + + <SwitchPreference + android:key="keepUpdated" + android:title="@string/keep_updated" + android:summary="@string/keep_updated_summary"/> + + <Preference + android:key="authentication" + android:title="@string/authentication_label" + android:summary="@string/authentication_descr"/> + + <ListPreference + android:entries="@array/spnAutoDeleteItems" + android:entryValues="@array/spnAutoDeleteValues" + android:title="@string/auto_delete_label" + android:key="autoDelete"/> + + <PreferenceCategory android:title="@string/auto_download_settings_label"> + <SwitchPreference + android:key="autoDownload" + android:title="@string/auto_download_label"/> + <Preference + android:key="filters" + android:title="@string/episode_filters_label" + android:summary="@string/episode_filters_description"/> + </PreferenceCategory> +</PreferenceScreen> |