Example usage for android.graphics Bitmap isRecycled

List of usage examples for android.graphics Bitmap isRecycled

Introduction

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

Prototype

public final boolean isRecycled() 

Source Link

Document

Returns true if this bitmap has been recycled.

Usage

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 bitmapRecycle(Bitmap bitmap) {
    if (bitmap != null && bitmap.isRecycled() == false) {
        bitmap.recycle();/*from   w w w.  j  a  v a2s  .com*/
    }
}

From source file:Main.java

public static void recycleBmp(Bitmap bmp) {
    if (null != bmp && !bmp.isRecycled()) {
        bmp.recycle();/* ww  w  .  ja  va 2s  .c  o m*/
        Log.d(LOGTAG, "=======recycleBmp ======");
    }
}

From source file:Main.java

/**
 * Safely free a {@link Bitmap}./*from   w  w w  . j  a v  a2  s.co 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

private static void recycleBitmap(Bitmap bitmap) {
    if (null != bitmap && !bitmap.isRecycled()) {
        bitmap.recycle();/*from w  ww.ja  v a 2 s  .c  om*/
        bitmap = null;
    }
}

From source file:Main.java

public static void recycleBitmap(Bitmap b) {
    if (b != null && !b.isRecycled()) {
        b.recycle();/*from w ww .  jav a2s.co  m*/
        b = null;
    }
}

From source file:Main.java

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

From source file:Main.java

public static boolean checkBitmap(Bitmap bitmap) {
    if (null == bitmap || bitmap.isRecycled() || bitmap.getWidth() <= 0 || bitmap.getHeight() <= 0) {
        return false;
    }//from  w w w .j  ava  2  s  . c  o m
    return true;
}

From source file:Main.java

public static void recycle(Bitmap bitmap) {
    if (null == bitmap || bitmap.isRecycled()) {
        return;//from w w  w .  j ava  2s  . co  m
    }
    bitmap.recycle();
}

From source file:Main.java

public static void recycleBitmap(Bitmap bitmap) {
    if (bitmap != null && !bitmap.isRecycled()) {
        bitmap.recycle();/*from w w w .  java2  s  .  c o m*/
        System.gc();
    }
}