Linda

Results 2 issues of Linda

WebpDecoder.java : entryRemoved 回调里 mBitmapProvider.release(oldValue); 最终会调用bitmap.recycle() prepareCanvasWithBlending 方法里 Bitmap bitmap = mFrameBitmapCache.get(index); if (bitmap != null && !bitmap.isRecycled()) { canvas.drawBitmap(bitmap, 0, 0, null); } canvas.drawBitmap 的 bitmap 可能在判断isRecycled后 被另一个线程立刻调用bitmap.recycle() 实际调用drawBitmap时被recycled的bitmap最终将导致崩溃:Error,...

need-details