how to set image from url for imageView

后端 未结 10 1758
礼貌的吻别
礼貌的吻别 2020-11-28 08:18

I wanna set Image in ImageView using Url for example I have this url

http://www.google.iq/imgres?hl=en&biw=1366&bih=667&tbm=isch&tbni

10条回答
  •  时光取名叫无心
    2020-11-28 08:34

    With the latest version of Picasso (2.71828 at the time of writing this answer), the with method has been deprecated.

    So the correct way would be-

    Picasso.get().load("https://").into(imageView);
    

    where imageView is the ImageView you want to load your image into.

提交回复
热议问题