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?
Try this:
InputStream input = contentResolver.openInputStream(httpuri); Bitmap b = BitmapFactory.decodeStream(input, null, options);