summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-17 15:03:21 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-17 15:03:21 +0200
commit51a5902fd95bf86ee57c47547920df62ba9dbf42 (patch)
treeb440ff43a9eb8488a0213f4b804f1ee0700f5104 /res
parente015308b955c3822fe82834bde91c5e84acc0634 (diff)
downloadAntennaPod-51a5902fd95bf86ee57c47547920df62ba9dbf42.zip
Added settings activity
Diffstat (limited to 'res')
-rw-r--r--res/menu/podfetcher.xml (renamed from res/menu/feedlist.xml)1
-rw-r--r--res/values/strings.xml3
-rw-r--r--res/xml/preferences.xml9
3 files changed, 13 insertions, 0 deletions
diff --git a/res/menu/feedlist.xml b/res/menu/podfetcher.xml
index 27bcdb59a..4a89aa5a9 100644
--- a/res/menu/feedlist.xml
+++ b/res/menu/podfetcher.xml
@@ -18,4 +18,5 @@
android:icon="@drawable/av_download"
android:showAsAction="ifRoom|collapseActionView">
</item>
+ <item android:id="@+id/show_preferences" android:title="@string/settings_label" android:icon="@drawable/action_settings" android:showAsAction="collapseActionView"></item>
</menu>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 61c29b4a1..11ab96fff 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -39,4 +39,7 @@
<string name="player_preparing_msg">Preparing...</string>
<string name="mark_read_label">Mark read</string>
<string name="mark_unread_label">Mark unread</string>
+ <string name="version_pref">Version</string>
+ <string name="other_pref">Other</string>
+ <string name="about_pref">About</string>
</resources>
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml
new file mode 100644
index 000000000..c387014f8
--- /dev/null
+++ b/res/xml/preferences.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
+ <PreferenceCategory android:title="@string/other_pref">
+ <Preference android:title="@string/version_pref"/>
+ <Preference android:title="@string/about_pref"/>
+ </PreferenceCategory>
+
+
+</PreferenceScreen> \ No newline at end of file