I have an array of bytes and I need to convert it into a Android Drawable. How can I perform this conversion?
Here is what i tried but without success:
byte[] b = getByteArray();
ByteArrayInputStream is = new ByteArrayInputStream(b);
Drawable drw = Drawable.createFromStream(is, "articleImage");
drw is always null!
EDIT:
My byte[] was actually corrupted/incomplete, that was the problem.
bcontains meaningful data? – Matt Ball Dec 2 '11 at 13:54