aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--res/layout/album_list_item.xml3
-rw-r--r--res/layout/artist_list_item.xml3
-rw-r--r--res/layout/song_list_item.xml3
-rw-r--r--src/github/daneren2005/dsub/view/UpdateView.java2
4 files changed, 7 insertions, 4 deletions
diff --git a/res/layout/album_list_item.xml b/res/layout/album_list_item.xml
index 0b84b4f3..ee710539 100644
--- a/res/layout/album_list_item.xml
+++ b/res/layout/album_list_item.xml
@@ -46,7 +46,8 @@
android:layout_gravity="right|center_vertical"
android:src="@drawable/ic_stat_star"
android:background="@android:color/transparent"
- android:focusable="false"/>
+ android:focusable="false"
+ android:visibility="gone"/>
<ImageView
android:id="@+id/album_more"
diff --git a/res/layout/artist_list_item.xml b/res/layout/artist_list_item.xml
index 3684e176..edf1930e 100644
--- a/res/layout/artist_list_item.xml
+++ b/res/layout/artist_list_item.xml
@@ -24,7 +24,8 @@
android:layout_gravity="right|center_vertical"
android:src="@drawable/ic_stat_star"
android:background="@android:color/transparent"
- android:focusable="false"/>
+ android:focusable="false"
+ android:visibility="gone"/>
<ImageView
android:id="@+id/artist_more"
diff --git a/res/layout/song_list_item.xml b/res/layout/song_list_item.xml
index e1badafb..90060894 100644
--- a/res/layout/song_list_item.xml
+++ b/res/layout/song_list_item.xml
@@ -44,7 +44,8 @@
android:layout_gravity="right|center_vertical"
android:src="@drawable/ic_stat_star"
android:background="@null"
- android:focusable="false"/>
+ android:focusable="false"
+ android:visibility="gone"/>
<TextView
android:id="@+id/song_status"
diff --git a/src/github/daneren2005/dsub/view/UpdateView.java b/src/github/daneren2005/dsub/view/UpdateView.java
index b80eda3c..48d9cf94 100644
--- a/src/github/daneren2005/dsub/view/UpdateView.java
+++ b/src/github/daneren2005/dsub/view/UpdateView.java
@@ -47,7 +47,7 @@ public class UpdateView extends LinearLayout {
protected boolean exists = false;
protected boolean shaded = false;
- protected boolean starred = true;
+ protected boolean starred = false;
protected boolean isStarred = false;
public UpdateView(Context context) {