also include artist in showqueue

This commit is contained in:
Adrian Ulrich 2013-08-29 11:19:41 +02:00
parent 2243e5a68f
commit 70c7957d0a

View File

@ -61,7 +61,7 @@ public class ShowQueueAdapter extends ArrayAdapter<Song> {
TextView target = ((TextView)row.findViewById(R.id.text));
SpannableStringBuilder sb = new SpannableStringBuilder(song.title);
sb.append('\n');
sb.append(song.album);
sb.append(song.album+", "+song.artist);
sb.setSpan(new ForegroundColorSpan(Color.GRAY), song.title.length() + 1, sb.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
target.setText(sb);