我有一张图片(网址),我想要托盘的十六进制代码。
所以我使用我在github中找到的将picasso与pallete混合的库来做到这一点:
Picasso.with(this).load("http://thetvdb.com/banners/fanart/original/289079-6.jpg").into(fotomenu_1,
PicassoPalette.with("http://thetvdb.com/banners/fanart/original/289079-6.jpg", fotomenu_1)
.intoCallBack(new PicassoPalette.CallBack() {
@Override
public void onPaletteLoaded(Palette palette) {
}
})
);
(图书馆:https://github.com/florent37/PicassoPalette)
如何获取十六进制的颜色?
由于