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
|
|
|
|
2012-08-10 14:30:54 +02:00
|
|
|
<PreferenceCategory android:title="@string/user_interface_label">
|
|
|
|
<CheckBoxPreference android:title="@string/pref_display_only_episodes_title" android:summary="@string/pref_display_only_episodes_sum" android:key="prefDisplayOnlyEpisodes"/>
|
2012-11-23 19:42:51 +01:00
|
|
|
<ListPreference android:entryValues="@array/theme_values" android:entries="@array/theme_options" android:title="@string/pref_set_theme_title" android:key="prefTheme" android:summary="@string/pref_set_theme_sum" android:defaultValue="0"/>
|
2012-08-10 14:30:54 +02:00
|
|
|
</PreferenceCategory><PreferenceCategory android:title="@string/playback_pref" >
|
2012-07-07 23:37:52 +02:00
|
|
|
<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" />
|
2012-08-10 14:30:54 +02:00
|
|
|
|
2012-07-07 23:37:52 +02:00
|
|
|
</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-08-06 10:54:49 +02:00
|
|
|
<CheckBoxPreference android:summary="@string/pref_autoQueue_sum" android:defaultValue="true" android:key="prefAutoQueue" android:title="@string/pref_autoQueue_title"/>
|
2013-03-08 20:56:24 +01:00
|
|
|
<PreferenceScreen android:summary="@string/pref_automatic_download_sum" android:key="prefAutoDownloadSettings" android:title="@string/pref_automatic_download_title">
|
|
|
|
<CheckBoxPreference android:key="prefEnableAutoDownloadWifiFilter" android:title="@string/pref_autodl_wifi_filter_title" android:summary="@string/pref_autodl_wifi_filter_sum"/>
|
|
|
|
</PreferenceScreen>
|
2012-07-07 23:37:52 +02:00
|
|
|
</PreferenceCategory>
|
2012-07-26 12:09:20 +02:00
|
|
|
<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" >
|
2012-12-23 11:09:05 +01:00
|
|
|
<Preference android:title="@string/choose_data_directory" android:key="prefChooseDataDir"/><Preference
|
2012-07-26 12:09:20 +02:00
|
|
|
android:key="prefFlattrThisApp"
|
|
|
|
android:summary="@string/pref_flattr_this_app_sum"
|
|
|
|
android:title="@string/pref_flattr_this_app_title" >
|
2012-07-12 16:06:10 +02:00
|
|
|
</Preference>
|
2012-10-03 15:54:50 +02:00
|
|
|
<Preference android:key="prefOpmlExport" android:title="@string/opml_export_label"/><Preference
|
2012-07-26 12:09:20 +02:00
|
|
|
android:key="prefAbout"
|
|
|
|
android:title="@string/about_pref" />
|
2012-10-03 15:54:50 +02:00
|
|
|
|
2012-12-23 11:09:05 +01:00
|
|
|
|
2012-06-17 15:03:21 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|