基本上,我正在尝试为textView with respect to bitmap by the help of
调色板library so that the
textView`找到正确的颜色,用户可以正确读取,但问题是我得到的颜色与背景的颜色混杂在一起颜色。谁能帮我解决这个问题?
代码:
Palette.from(resource).generate(new Palette.PaletteAsyncListener() {
@Override
public void onGenerated(Palette palette) {
int vibrantColor = palette.getLightVibrantColor(Color.parseColor("#001919"));
caption.setTextColor(vibrantColor);
}
});