我正在使用Google提供的UMP
示例,我没有对我的代码进行任何更改,即使我没有尝试任何开箱即用的东西,我只是将您的项目导入我的工作区并检查它在我的设备上,发现我是not getting Thumb with Genres
(流派的歌曲)和流派列表......
虽然我应该从我们的JSON获取Thumb,但这是我尝试过的(但没有成功) -
holder.mImageView.setImageBitmap(description.getIconBitmap());
更新#1 按@NageshSusarla建议here
holder.mTitleView.setText(description.getTitle());
holder.mDescriptionView.setText(description.getSubtitle());
AlbumArtCache cache = AlbumArtCache.getInstance();
Bitmap art = cache.getIconImage(url);
if (art == null) {
cache.fetch(url, new AlbumArtCache.FetchListener() {
@Override
public void onFetched(String artUrl, Bitmap bitmap, Bitmap icon) {
if (artUrl.equals(url)) {
holder.mImageView.setImageBitmap(icon);
}
}
});
} else {
holder.mImageView.setImageBitmap(bitmap);
}
holder.mImageView.setImageBitmap(description.getIconBitmap());
并获得Cannot resolve symbol 'url'
答案 0 :(得分:1)
AlbumArtCache.getInstance().fetch(url,..)
的网址是description.getIconUri().toString()
旁白:这确实是设计上的,当用户选择要播放的项目时,图标仅显示在底部。
答案 1 :(得分:0)