summaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/preferences_network.xml
blob: c37a99465f8f431405452e384b33c968640b77a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:numberpicker="http://schemas.android.com/apk/de.danoeh.antennapod"
        xmlns:search="http://schemas.android.com/apk/com.bytehamster.lib.preferencesearch">
    <PreferenceCategory android:title="@string/automation">
        <Preference
                android:key="prefAutoUpdateIntervall"
                android:summary="@string/pref_autoUpdateIntervallOrTime_sum"
                android:title="@string/pref_autoUpdateIntervallOrTime_title"/>
        <Preference
                android:summary="@string/pref_automatic_download_sum"
                android:key="prefAutoDownloadSettings"
                android:title="@string/pref_automatic_download_title"
                search:ignore="true" />
    </PreferenceCategory>

    <PreferenceCategory android:title="@string/download_pref_details">
        <SwitchPreference
                android:defaultValue="false"
                android:enabled="true"
                android:key="prefMobileUpdate"
                android:summary="@string/pref_mobileUpdate_sum"
                android:title="@string/pref_mobileUpdate_title"/>
        <de.danoeh.antennapod.preferences.NumberPickerPreference
                android:defaultValue="4"
                numberpicker:minValue="1"
                numberpicker:maxValue="50"
                android:key="prefParallelDownloads"
                android:title="@string/pref_parallel_downloads_title"/>
        <SwitchPreference
                android:defaultValue="true"
                android:enabled="true"
                android:key="prefShowDownloadReport"
                android:summary="@string/pref_showDownloadReport_sum"
                android:title="@string/pref_showDownloadReport_title"/>
        <Preference
                android:key="prefProxy"
                android:summary="@string/pref_proxy_sum"
                android:title="@string/pref_proxy_title"/>
    </PreferenceCategory>
</PreferenceScreen>