aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/res/layout/album_list_item.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2012-10-03 22:15:26 -0700
committerScott Jackson <daneren2005@gmail.com>2012-10-03 22:15:26 -0700
commitf9a6738054febd93932cd3f6ab66e985777d45f1 (patch)
treec2cd3898bdcbf8dbd273b01ca4b7b6bebb531603 /subsonic-android/res/layout/album_list_item.xml
parentac6b7ae5a6f63bf4d4573d478ec5e4fc64190098 (diff)
downloaddsub-f9a6738054febd93932cd3f6ab66e985777d45f1.tar.gz
dsub-f9a6738054febd93932cd3f6ab66e985777d45f1.tar.bz2
dsub-f9a6738054febd93932cd3f6ab66e985777d45f1.zip
Updated star support to only display star when starred + star/unstar from long press menu
Diffstat (limited to 'subsonic-android/res/layout/album_list_item.xml')
-rw-r--r--subsonic-android/res/layout/album_list_item.xml19
1 files changed, 9 insertions, 10 deletions
diff --git a/subsonic-android/res/layout/album_list_item.xml b/subsonic-android/res/layout/album_list_item.xml
index a0f79fa7..80f40989 100644
--- a/subsonic-android/res/layout/album_list_item.xml
+++ b/subsonic-android/res/layout/album_list_item.xml
@@ -36,6 +36,15 @@
android:singleLine="true"/>
</LinearLayout>
+
+ <ImageButton
+ android:id="@+id/album_star"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="right|center_vertical"
+ android:src="@drawable/ic_stat_star"
+ android:background="@null"
+ android:focusable="false"/>
<ImageView
android:src="@drawable/list_item_more"
@@ -43,14 +52,4 @@
android:layout_height="wrap_content"
android:layout_gravity="right|center_vertical"
android:paddingRight="6dip"/>
-
- <ImageButton
- android:id="@+id/album_star"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="right|center_vertical"
- android:background="@null"
- android:focusable="false"
- android:src="@android:drawable/star_big_off" />
-
</LinearLayout>