ImageView不显示Uri
我有一个图像视图,如果有专辑封面,我想用这种方法显示它,如果没有,我想显示默认图像。但是当我运行这个时,它什么也没有显示。这是代码:
//Recieves it from a bundle
String albumarturi = names.getString("artworkkeyword");
String tempstring = albumarturi;
Uri myUri = Uri.parse(albumarturi)
if(tempstring == null){
artworkimageview.setImageDrawable(getResources().getDrawable(R.drawable.noartwork));
}else{
artworkimageview.setImageURI(myUri);
}
I have an image view and if there is an album cover I want to display it with this method and if there isn't I want to display a default image. But when I run this, it displays nothing. Here is the code:
//Recieves it from a bundle
String albumarturi = names.getString("artworkkeyword");
String tempstring = albumarturi;
Uri myUri = Uri.parse(albumarturi)
if(tempstring == null){
artworkimageview.setImageDrawable(getResources().getDrawable(R.drawable.noartwork));
}else{
artworkimageview.setImageURI(myUri);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的
albumarturi
不是有效的 URI。它必须指向有效的资源。Your
albumarturi
is not a valid URI. It must be pointing to a valid resource.