2012-06-17 15:03:21 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
2012-07-07 23:37:52 +02:00
|
|
|
|
|
|
|
<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" />
|
2012-07-09 12:05:09 +02:00
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:enabled="true"
|
|
|
|
android:key="prefMobileUpdate"
|
|
|
|
android:summary="@string/pref_mobileUpdate_sum"
|
|
|
|
android:title="@string/pref_mobileUpdate_title" />
|
2012-07-07 23:37:52 +02:00
|
|
|
</PreferenceCategory>
|
2012-07-22 17:05:43 +02:00
|
|
|
<PreferenceCategory android:title="@string/other_pref" ><Preference android:summary="@string/pref_flattr_this_app_sum" android:title="@string/pref_flattr_this_app_title" android:key="prefFlattrThisApp">
|
2012-07-12 16:06:10 +02:00
|
|
|
</Preference>
|
2012-07-15 15:55:42 +02:00
|
|
|
<Preference android:title="@string/about_pref" android:key="prefAbout"/>
|
2012-06-17 15:03:21 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|