Changed playing queue current song background color to transparent
This commit is contained in:
parent
9981f26d83
commit
24a40dea40
1 changed files with 1 additions and 3 deletions
|
|
@ -45,10 +45,8 @@ public class PlayingQueueAdapter extends SongAdapter implements DraggableItemAda
|
||||||
if (holder.imageText != null) {
|
if (holder.imageText != null) {
|
||||||
holder.imageText.setText(String.valueOf(position - current));
|
holder.imageText.setText(String.valueOf(position - current));
|
||||||
}
|
}
|
||||||
if (holder.getItemViewType() == HISTORY) {
|
if (holder.getItemViewType() == HISTORY || holder.getItemViewType() == CURRENT) {
|
||||||
setAlpha(holder, 0.5f);
|
setAlpha(holder, 0.5f);
|
||||||
} else if (holder.getItemViewType() == CURRENT) {
|
|
||||||
holder.itemView.setActivated(true);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue