android Recycled bitmap error

问题描述:

在部分机器上出现,Can't compress a recycled bitmap,而且还是偶现,要命啊...

代码片段,案发现场分析:

Bitmap ret = Bitmap.createBitmap(bmpt, 0, 0, bmpt.getWidth(), bmpt.getHeight(), m, true);

if(null != bmpt && !bmpt.isRecycled()){

bmpt.recycle();

}

然后再对ret进行了操作,然后就直接报异常了。

详细解释:

大概的意思就是Bitmap.createBitmap,出来的可能是原图,也可能是原图的一个copy。那么如果ret==bmpt,那么调用了bmpt.recycle();ret也被recycle了。好吧,基本算是明白是怎么回事情了。

参考链接:

http://developer.android.com/reference/android/graphics/Bitmap.html#createBitmap%28android.graphics.Bitmap,%20int,%20int,%20int,%20int%29

http://stackoverflow.com/questions/7983321/android-trying-to-use-a-recycled-bitmap-error-with-temporary-bitmaps


困扰了n久的一个问题,终于是有一个答案了!!!




你可能感兴趣的:(android,bitmap,异常)