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
You can use either Picasso or Glide.
Picasso
Glide
Picasso.with(context) .load(your_url) .into(imageView); Glide.with(context) .load(your_url) .into(imageView);