Android Utililty Methods Bitmap Recycle

List of utility methods to do Bitmap Recycle

Description

The list of methods to do Bitmap Recycle are organized into topic(s).

Method

voidrecycleBitmap(Bitmap bitmap)
recycle Bitmap
if (null != bitmap && !bitmap.isRecycled()) {
    bitmap.recycle();
voidrecycleSilently(Bitmap bitmap)
recycle Silently
if (bitmap == null)
    return;
try {
    bitmap.recycle();
} catch (Throwable t) {
    Log.w(TAG, "unable recycle bitmap", t);