Android decoder->decode returned false for Bitmap download

前端 未结 7 1632
不知归路
不知归路 2020-11-30 06:02

I\'ve started getting a

DEBUG/skia(xxxx): --- decoder->decode returned false 

issue on a few profile images from Facebook that I use in

相关标签:
7条回答
  • 2020-11-30 06:28

    Others who are facing issues in Android KitKat 4.4 , following would be helpful

    Bitmap b = BitmapFactory.decodeStream(new BufferedInputStream(is));
    imageView.setImageBitmap(b);
    

    I was facing this issue in Nexus series After updating to 4.4.

    0 讨论(0)
提交回复
热议问题