diff options
author | ByteHamster <info@bytehamster.com> | 2019-04-02 16:06:07 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2019-04-02 17:41:15 +0200 |
commit | 0fda36b9b3cd698a0d43f7041324dad234e8252c (patch) | |
tree | 4e0e0a04a4d034a042b1fe353dd1426980cf1287 /app/src/main/res/xml | |
parent | 56de034c7c6cb419c72b1d4d218b33f74ab5e0d0 (diff) | |
download | AntennaPod-0fda36b9b3cd698a0d43f7041324dad234e8252c.zip |
Add preference to allow mobile updates of images
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/preferences_network.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/src/main/res/xml/preferences_network.xml b/app/src/main/res/xml/preferences_network.xml index c37a99465..59dd0c51b 100644 --- a/app/src/main/res/xml/preferences_network.xml +++ b/app/src/main/res/xml/preferences_network.xml @@ -16,10 +16,11 @@ </PreferenceCategory> <PreferenceCategory android:title="@string/download_pref_details"> - <SwitchPreference - android:defaultValue="false" - android:enabled="true" - android:key="prefMobileUpdate" + <ListPreference + android:defaultValue="images" + android:entries="@array/mobile_update_entries" + android:entryValues="@array/mobile_update_values" + android:key="prefMobileUpdateAllowed" android:summary="@string/pref_mobileUpdate_sum" android:title="@string/pref_mobileUpdate_title"/> <de.danoeh.antennapod.preferences.NumberPickerPreference |