gpt4 book ai didi

java - picasso 图像无法加载

转载 作者:行者123 更新时间:2023-12-02 00:58:41 24 4
gpt4 key购买 nike

我在使用 picasso 库时遇到问题。当我使用此库(implementation 'com.squareup.picasso:picasso:2.71828')时,我的图像不会显示在 ImageView 中。运行我的应用程序时,甚至默认头像也会被删除。

MM的代码是

try {
//if image recieve then set
Picasso.get().load(image).into(avaterIv);
}catch (Exception e){
//if there is any exception while loading image the set default
Picasso.get().load(R.drawable.ic_add_image).into(avaterIv);
}

最佳答案

您的电话必须是

 Picasso
.with(imageView.getContext())
.load(image_url)
.placeholder(R.mipmap.ic_launcher_round)
.into(imageView);

关于java - picasso 图像无法加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60987508/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com