Bitmapfactory Decode An Bmp Image
I am using this code from android developer blog for downloading a BMP file like this one. BitmapFactory.decodeStream always returns null with skia returning false. I've also trie
Solution 1:
Okay, i found here, you need to wrap the HttpEntity with a BufferedHttpEntity.
BufferedHttpEntity bufHttpEntity = new BufferedHttpEntity(entity);
Post a Comment for "Bitmapfactory Decode An Bmp Image"