Added an option to turn off the color

This commit is contained in:
Materight 2017-06-06 15:37:41 +02:00
commit 2fa79c6d09
5 changed files with 66 additions and 3 deletions

View file

@ -31,5 +31,9 @@ public abstract class PhonographColoredTarget extends BitmapPaletteTarget {
return ATHUtil.resolveColor(getView().getContext(), R.attr.defaultFooterColor);
}
protected int getAlbumArtistFooterColor() {
return ATHUtil.resolveColor(getView().getContext(), R.attr.cardBackgroundColor);
}
public abstract void onColorReady(int color);
}