summaryrefslogtreecommitdiff
path: root/androvdr/res/xml
diff options
context:
space:
mode:
authorbju <bju@maxi.fritz.box>2011-03-19 15:55:13 +0100
committerbju <bju@maxi.fritz.box>2011-03-19 15:55:13 +0100
commitb75a02a4261d28404690e71d8f35db6fbae2fe29 (patch)
tree67d239826decc651c02c1c8c17e2c2a4d5b3592d /androvdr/res/xml
parentb4558f9dac4977c6ac933f52fc98b9eea9dfdbca (diff)
downloadvdr-manager-b75a02a4261d28404690e71d8f35db6fbae2fe29.tar.gz
vdr-manager-b75a02a4261d28404690e71d8f35db6fbae2fe29.tar.bz2
First revision
Diffstat (limited to 'androvdr/res/xml')
-rw-r--r--androvdr/res/xml/preferences.xml103
1 files changed, 103 insertions, 0 deletions
diff --git a/androvdr/res/xml/preferences.xml b/androvdr/res/xml/preferences.xml
new file mode 100644
index 0000000..6d69051
--- /dev/null
+++ b/androvdr/res/xml/preferences.xml
@@ -0,0 +1,103 @@
+<?xml version="1.0" encoding="utf-8"?>
+<PreferenceScreen
+ xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <PreferenceCategory android:title="@string/vdr_preferences" android:key="vdr_preferences">
+
+ <EditTextPreference
+ android:key="@string/vdr_host_key"
+ android:title="@string/vdr_host_title"
+ android:summary="@string/vdr_host_summary"/>
+
+ <EditTextPreference
+ android:key="@string/vdr_port_key"
+ android:title="@string/vdr_port_title"
+ android:summary="@string/vdr_port_summary"
+ android:defaultValue="@string/vdr_port_default"/>
+
+ <EditTextPreference
+ android:key="@string/vdr_password_key"
+ android:title="@string/vdr_password_title"
+ android:summary="@string/vdr_password_summary"
+ android:password="true"/>
+
+ <CheckBoxPreference
+ android:key="@string/vdr_ssl_key"
+ android:title="@string/vdr_ssl_title"
+ android:summary="@string/vdr_ssl_summary"/>
+
+ </PreferenceCategory>
+
+ <PreferenceCategory android:title="@string/channel_filter_preferences" android:key="filter_preferences">
+
+ <CheckBoxPreference
+ android:key="@string/channel_filter_filter_key"
+ android:title="@string/channel_filter_filter_title"
+ android:summary="@string/channel_filter_filter_summary"/>
+
+ <EditTextPreference
+ android:key="@string/channel_filter_last_key"
+ android:title="@string/channel_filter_last_title"
+ android:summary="@string/channel_filter_last_summary"
+ android:defaultValue="1"/>
+
+ </PreferenceCategory>
+
+ <PreferenceCategory android:title="@string/wakeup_preferences" android:key="wakeup_preferences">
+
+ <CheckBoxPreference
+ android:key="@string/wakeup_enabled_key"
+ android:title="@string/wakeup_enabled_title"
+ android:summary="@string/wakeup_enabled_summary"/>
+
+ <CheckBoxPreference
+ android:key="@string/wakeup_svdrphelper_key"
+ android:title="@string/wakeup_svdrphelper_title"
+ android:summary="@string/wakeup_svdrphelper_summary"/>
+
+ <EditTextPreference
+ android:key="@string/wakeup_url_key"
+ android:title="@string/wakeup_url_title"
+ android:summary="@string/wakeup_url_summary"/>
+
+ <EditTextPreference
+ android:key="@string/wakeup_user_key"
+ android:title="@string/wakeup_user_title"
+ android:summary="@string/wakeup_user_summary"/>
+
+ <EditTextPreference
+ android:key="@string/wakeup_password_key"
+ android:title="@string/wakeup_password_title"
+ android:summary="@string/wakeup_password_summary"/>
+
+ </PreferenceCategory>
+
+ <PreferenceCategory android:title="@string/timer_preferences" android:key="timer_preferences">
+
+ <EditTextPreference
+ android:key="@string/timer_pre_start_buffer_key"
+ android:title="@string/timer_pre_start_buffer_title"
+ android:summary="@string/timer_pre_start_buffer_summary"
+ android:defaultValue="5"/>
+
+ <EditTextPreference
+ android:key="@string/timer_post_end_buffer_key"
+ android:title="@string/timer_post_end_buffer_title"
+ android:summary="@string/timer_post_end_buffer_summary"
+ android:defaultValue="30"/>
+
+ <EditTextPreference
+ android:key="@string/timer_default_lifetime_key"
+ android:title="@string/timer_default_lifetime_title"
+ android:summary="@string/timer_default_lifetime_summary"
+ android:defaultValue="99"/>
+
+ <EditTextPreference
+ android:key="@string/timer_default_priority_key"
+ android:title="@string/timer_default_priority_title"
+ android:summary="@string/timer_default_priority_summary"
+ android:defaultValue="50"/>
+
+ </PreferenceCategory>
+
+</PreferenceScreen>