Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to download an image from a URL to a byte[] and then display it as a drawable in an imageView. I use AsyncTask to download the method and then use onPostExecute() to display it but it doesn't seem to be working and I don't get any errors.

[FIXED]

share|improve this question

2 Answers

try to display the image in a WebView like this

  byte[] imageRaw = yourImage;
  String image64 = Base64.encodeToString(imageRaw, Base64.DEFAULT);
  String pageData = "<img src=\"data:image/jpeg;base64," + image64 + "\" />";
share|improve this answer
I need to use an image view – Jam Dec 13 '12 at 15:20

Dunno if this helps, but in a similar app I created a Bitmap also using the BitmapFactory and updated an ImageView using setImageBitmap followed by refreshDrawableState.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.