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-
Try to add this before calling recycle() methods to make sure bitmap isn't already recycled:
recycle()
if (mBitmap != null && !mBitmap.isRecycled()) { mBitmap.recycle(); mBitmap = null; }