summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/layout/playbackhistory_activity.xml8
-rw-r--r--res/menu/podfetcher.xml3
-rw-r--r--res/values/ids.xml1
-rw-r--r--res/values/strings.xml4
4 files changed, 15 insertions, 1 deletions
diff --git a/res/layout/playbackhistory_activity.xml b/res/layout/playbackhistory_activity.xml
new file mode 100644
index 000000000..eefa914ea
--- /dev/null
+++ b/res/layout/playbackhistory_activity.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/playbackhistory_fragment"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+
+
+</FrameLayout> \ No newline at end of file
diff --git a/res/menu/podfetcher.xml b/res/menu/podfetcher.xml
index afe422539..226f07954 100644
--- a/res/menu/podfetcher.xml
+++ b/res/menu/podfetcher.xml
@@ -12,7 +12,8 @@
<item android:id="@id/search_item" android:icon="@drawable/action_search" android:title="@string/search_label" android:showAsAction="ifRoom|collapseActionView"></item><item android:id="@+id/show_player" android:title="@string/show_player_label" android:icon="@drawable/av_play" android:showAsAction="collapseActionView"></item>
<item android:id="@+id/opml_import" android:title="@string/opml_import_label" android:showAsAction="collapseActionView"></item>
- <item android:id="@+id/opml_export" android:title="@string/opml_export_label"></item><item android:id="@+id/show_downloads" android:title="@string/downloads_label" android:icon="@drawable/av_download" android:showAsAction="collapseActionView">
+ <item android:id="@+id/opml_export" android:title="@string/opml_export_label"></item><item android:id="@+id/show_playback_history" android:title="@string/playback_history_label" android:showAsAction="collapseActionView"></item><item android:id="@+id/show_downloads" android:title="@string/downloads_label" android:icon="@drawable/av_download" android:showAsAction="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/ids.xml b/res/values/ids.xml
index 6ae686ee5..c3219b553 100644
--- a/res/values/ids.xml
+++ b/res/values/ids.xml
@@ -10,5 +10,6 @@
<item type="id" name="search_item"/>
<item name="enqueue_all_item" type="id"/>
<item name="download_all_item" type="id"/>
+ <item type="id" name="clear_history_item"/>
</resources> \ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
index ff7b189d7..8e0adef7c 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -10,7 +10,11 @@
<string name="downloads_label">Downloads</string>
<string name="cancel_download_label">Cancel Download</string>
<string name="download_log_label">Download log</string>
+ <string name="playback_history_label">Playback history</string>
+ <!-- Playback history -->
+ <string name="clear_history_label">Clear history</string>
+
<!-- Other -->
<string name="confirm_label">Confirm</string>
<string name="cancel_label">Cancel</string>