aboutsummaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-12-16 09:13:33 -0800
committerScott Jackson <daneren2005@gmail.com>2014-12-16 09:13:33 -0800
commitc6d492a890edac8e0556340f8f20e519da3837f8 (patch)
treef3ba563928a8ee436d985e839ece9eb6518a3958 /res
parent89b42b0292f9c6058081e53b6e2dd97d84f70400 (diff)
downloaddsub-c6d492a890edac8e0556340f8f20e519da3837f8.tar.gz
dsub-c6d492a890edac8e0556340f8f20e519da3837f8.tar.bz2
dsub-c6d492a890edac8e0556340f8f20e519da3837f8.zip
#429 Add ability to play/shuffle by album lists. Just plays/shuffles whatever is loaded so far.
Diffstat (limited to 'res')
-rw-r--r--res/menu/select_album_list.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/res/menu/select_album_list.xml b/res/menu/select_album_list.xml
new file mode 100644
index 00000000..3b86fbcd
--- /dev/null
+++ b/res/menu/select_album_list.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:compat="http://schemas.android.com/apk/res-auto">
+ <item
+ android:id="@+id/menu_play_now"
+ android:icon="?media_button_start"
+ android:title="@string/menu.play"
+ compat:showAsAction="always|withText"/>
+
+ <item
+ android:id="@+id/menu_shuffle"
+ android:icon="?attr/shuffle"
+ android:title="@string/menu.shuffle"
+ compat:showAsAction="ifRoom|withText"/>
+
+ <item
+ android:id="@+id/menu_exit"
+ android:title="@string/menu.exit"/>
+</menu>