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:
Do you really need a Drawable ? If Bitmap can fit, then :
Bitmap bitmap = BitmapFactory.decodeStream(is);