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 also let Square's Picasso library do the heavy lifting:
Picasso .with(context) .load("http://...") .into(imageView);
As a bonus, you get caching, transformations, and more.