diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 3f728b91..e1512720 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -2,7 +2,7 @@ + a:versionName="3.9.9.10" a:installLocation="auto"> diff --git a/src/net/sourceforge/subsonic/androidapp/util/SongView.java b/src/net/sourceforge/subsonic/androidapp/util/SongView.java index 2b2c5673..e5e79147 100644 --- a/src/net/sourceforge/subsonic/androidapp/util/SongView.java +++ b/src/net/sourceforge/subsonic/androidapp/util/SongView.java @@ -164,6 +164,12 @@ public class SongView extends LinearLayout implements Checkable { statusTextView.setText(null); } statusTextView.setCompoundDrawablesWithIntrinsicBounds(leftImage, 0, rightImage, 0); + + if (!song.getStarred()) { + starImageView.setImageDrawable(getResources().getDrawable(R.drawable.star_hollow)); + } else { + starImageView.setImageDrawable(getResources().getDrawable(R.drawable.star)); + } boolean playing = downloadService.getCurrentPlaying() == downloadFile; if (playing) {