Canvas: trying to use a recycled bitmap android.graphics.Bitmap in Android

后端 未结 8 1704
忘掉有多难
忘掉有多难 2020-12-13 17:32

I am working on the crop image class, but encounter a recycled bit map problem:

03-02 23:14:10.514: E/AndroidRuntime(16736): FATAL EXCEPTION: Thread-1470
03-         


        
8条回答
  •  攒了一身酷
    2020-12-13 17:49

    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; 
    }
    

提交回复
热议问题