summaryrefslogtreecommitdiff
path: root/res/xml/preferences.xml
blob: a7433ac7ff6da3dedb69552c9fe787a4f82139bb (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
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >

    <PreferenceCategory android:title="@string/playback_pref" >
        <CheckBoxPreference
            android:defaultValue="true"
            android:enabled="true"
            android:key="prefPauseOnHeadsetDisconnect"
            android:summary="@string/pref_pauseOnHeadsetDisconnect_sum"
            android:title="@string/pref_pauseOnHeadsetDisconnect_title" />
        <CheckBoxPreference
            android:defaultValue="false"
            android:enabled="true"
            android:key="prefFollowQueue"
            android:summary="@string/pref_followQueue_sum"
            android:title="@string/pref_followQueue_title" />
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/network_pref" >

        <ListPreference
            android:defaultValue="0"
            android:entries="@array/update_intervall_options"
            android:entryValues="@array/update_intervall_values"
            android:key="prefAutoUpdateIntervall"
            android:summary="@string/pref_autoUpdateIntervall_sum"
            android:title="@string/pref_autoUpdateIntervall_title" />

        <CheckBoxPreference
            android:defaultValue="false"
            android:enabled="true"
            android:key="prefMobileUpdate"
            android:summary="@string/pref_mobileUpdate_sum"
            android:title="@string/pref_mobileUpdate_title" />
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/other_pref" >
        <Preference android:title="@string/version_pref" />
        <Preference android:title="@string/about_pref" />
    </PreferenceCategory>

</PreferenceScreen>