ImageView不显示Uri

发布于 2024-12-17 03:54:06 字数 457 浏览 0 评论 0原文

我有一个图像视图,如果有专辑封面,我想用这种方法显示它,如果没有,我想显示默认图像。但是当我运行这个时,它什么也没有显示。这是代码:

 //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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十年九夏 2024-12-24 03:54:06

您的 albumarturi 不是有效的 URI。它必须指向有效的资源。

Your albumarturi is not a valid URI. It must be pointing to a valid resource.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文