List of utility methods to do Bitmap Recycle
void | recycleBitmap(Bitmap bitmap) recycle Bitmap if (null != bitmap && !bitmap.isRecycled()) {
bitmap.recycle();
|
void | recycleSilently(Bitmap bitmap) recycle Silently if (bitmap == null) return; try { bitmap.recycle(); } catch (Throwable t) { Log.w(TAG, "unable recycle bitmap", t); |