58 lines
2.5 KiB
XML
58 lines
2.5 KiB
XML
<?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/flattr_settings_label" >
|
|
<PreferenceScreen
|
|
android:key="pref_flattr_authenticate"
|
|
android:summary="@string/pref_flattr_auth_sum"
|
|
android:title="@string/pref_flattr_auth_title" >
|
|
<intent android:action=".activities.FlattrAuthActivity" />
|
|
</PreferenceScreen>
|
|
|
|
<Preference
|
|
android:key="prefRevokeAccess"
|
|
android:summary="@string/pref_revokeAccess_sum"
|
|
android:title="@string/pref_revokeAccess_title" />
|
|
</PreferenceCategory>
|
|
<PreferenceCategory android:title="@string/other_pref" >
|
|
<Preference
|
|
android:key="prefFlattrThisApp"
|
|
android:summary="@string/pref_flattr_this_app_sum"
|
|
android:title="@string/pref_flattr_this_app_title" >
|
|
</Preference>
|
|
<Preference
|
|
android:key="prefAbout"
|
|
android:title="@string/about_pref" />
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen> |