diff options
author | Scott Jackson <daneren2005@gmail.com> | 2012-07-25 19:58:53 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2012-07-25 19:58:53 -0700 |
commit | 2e210b2632b0a4c4d90ab4b0961a47f693d0a66f (patch) | |
tree | 4c46a8cd26c7b8919fc93bd5f80a3b2cf1e6f165 /subsonic-android/res/layout | |
parent | b3ae86281bcd3f94f4e5f2497dbc2bb1a77803d4 (diff) | |
download | dsub-2e210b2632b0a4c4d90ab4b0961a47f693d0a66f.tar.gz dsub-2e210b2632b0a4c4d90ab4b0961a47f693d0a66f.tar.bz2 dsub-2e210b2632b0a4c4d90ab4b0961a47f693d0a66f.zip |
Play Shuffled added to everything with a Play Now option (tombriden)
Diffstat (limited to 'subsonic-android/res/layout')
-rw-r--r-- | subsonic-android/res/layout/select_album.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/subsonic-android/res/layout/select_album.xml b/subsonic-android/res/layout/select_album.xml index f2adf21b..2c9a00aa 100644 --- a/subsonic-android/res/layout/select_album.xml +++ b/subsonic-android/res/layout/select_album.xml @@ -92,6 +92,17 @@ android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="fill_parent"/>
+
+ <Button android:id="@+id/select_album_play_shuffled"
+ android:text="@string/common.play_shuffled"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:visibility="gone"
+ android:layout_marginLeft="3dp"
+ android:layout_marginRight="3dp"
+ android:layout_weight="1"
+ android:layout_width="0dp"
+ android:layout_height="fill_parent"/>
+
<Button android:id="@+id/select_album_play_last"
android:text="@string/common.play_last"
|