I have an image URL. I want to display an image from this URL in an ImageView but I am unable to do that.
How can this be achieved?
UrlImageViewHelper will fill an ImageView with an image that is found at a URL. UrlImageViewHelper will automatically download, save, and cache all the image urls the BitmapDrawables. Duplicate urls will not be loaded into memory twice. Bitmap memory is managed by using a weak reference hash table, so as soon as the image is no longer used by you, it will be garbage collected automatically.
UrlImageViewHelper.setUrlDrawable(imageView, "http://example.com/image.png");
https://github.com/koush/UrlImageViewHelper