Example usage for android.graphics Bitmap recycle

List of usage examples for android.graphics Bitmap recycle

Introduction

In this page you can find the example usage for android.graphics Bitmap recycle.

Prototype

public void recycle() 

Source Link

Document

Free the native object associated with this bitmap, and clear the reference to the pixel data.

Usage

From source file:Main.java

public static void recycleBitmap(Bitmap bmp) {
    if ((bmp != null) && (!bmp.isRecycled()))
        bmp.recycle();
}

From source file:Main.java

public static void recycle(Bitmap bit) {
    if (bit != null && !bit.isRecycled()) {
        bit.recycle();
    }
}

From source file:Main.java

public static void recycleBitmap(Bitmap bitmap) {
    if (bitmap != null && !bitmap.isRecycled())
        bitmap.recycle();
}

From source file:Main.java

public static void recycleBitmap(Bitmap b) {
    if (b != null && !b.isRecycled()) {
        b.recycle();
        b = null;//from   www  . j  a  v a2  s  .  co  m
    }
}

From source file:Main.java

public static void recycle(Bitmap bitmap) {
    if (bitmap != null && !bitmap.isRecycled())
        bitmap.recycle();
}

From source file:Main.java

public static void recycleBmp(Bitmap bmp) {
    if (null != bmp && !bmp.isRecycled()) {
        bmp.recycle();
        Log.d(LOGTAG, "=======recycleBmp ======");
    }//from   w  w  w.ja va2 s .com
}

From source file:Main.java

public static void doRecycledIfNot(Bitmap bitmap) {
    if (!bitmap.isRecycled()) {
        bitmap.recycle();
    }
}

From source file:Main.java

public static void recycleBitmap(Bitmap bitmap) {
    if (bitmap != null && bitmap.isRecycled()) {
        bitmap.recycle();
    }//  w  w w  .j  a  v  a 2s .  c  om
}

From source file:Main.java

/**
 * Safely free a {@link Bitmap}./*from   w w w . ja v  a2  s. c o m*/
 * 
 * @param bmp
 *            Object of bitmap.
 */
public final static void freeBitmap(Bitmap bmp) {
    if (null != bmp && !bmp.isRecycled()) {
        bmp.recycle();
    }
}

From source file:Main.java

public static void doRecycledBitmap(Bitmap bitmap) {
    if (!bitmap.isRecycled()) {
        bitmap.recycle();
    }
}