Try to add this before calling recycle()
methods to make sure bitmap isn’t already recycled:
if (mBitmap != null && !mBitmap.isRecycled()) {
mBitmap.recycle();
mBitmap = null;
}
Try to add this before calling recycle()
methods to make sure bitmap isn’t already recycled:
if (mBitmap != null && !mBitmap.isRecycled()) {
mBitmap.recycle();
mBitmap = null;
}