我有一个API,它会将图像作为响应。您可以建议我如何将该图像设置为ImageView.Thanks, `
private static final String URL = "http://someapi";
setting images from api
person.setThumbnailUrl(Picasso.with(getApplicationContext()).load((File) items.get("profileImageLargeUrl")));
答案 0 :(得分:0)
这是你可以通过毕加索的网址设置图片的方式(你不需要排球):
ListView
您还可以设置其他选项,如spiner,fit或errorImage:
ImageView picture = (ImageView) findViewById(R.id.my_image);
String urlImage = "https://...";
...
Picasso.with(this)
.load(urlImage)
.into(picture);