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
With the latest version of Picasso (2.71828 at the time of writing this answer), the with method has been deprecated.
with
So the correct way would be-
Picasso.get().load("https://").into(imageView);
where imageView is the ImageView you want to load your image into.
imageView