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 recycleBitmap(Bitmap bitmap) {
    if (bitmap != null && bitmap.isRecycled()) {
        bitmap.recycle();// w  w  w .  j  a v  a 2  s .c  o  m
        bitmap = null;
    }
}

From source file:Main.java

public static void releaseBitmap(Bitmap bitmap) {
    if (null != bitmap && !bitmap.isRecycled()) {
        bitmap.recycle();/*from  w  w  w.  jav a2  s.c om*/
        bitmap = null;
    }
}

From source file:Main.java

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

From source file:Main.java

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

From source file:Main.java

/**
 * <pre>/* w  ww  .jav a  2  s .  c o m*/
 * Recycle a {@link Bitmap} object
 * </pre>
 * @return true if bitmap was recycled successfully
 */
public static boolean recycleBitmap(Bitmap bm) {
    if (bm != null && !bm.isRecycled()) {
        bm.recycle();
        return true;
    }
    return false;
}

From source file:Main.java

public static void recyleBitmap(Bitmap bitmap) {
    if (bitmap != null && !bitmap.isRecycled()) {
        bitmap.recycle();/* ww  w .j  a v a2 s .c  om*/
        System.gc();
    }
}

From source file:Main.java

public static boolean isBitmapCanUse(Bitmap bitmap) {

    return bitmap != null && !bitmap.isRecycled();
}

From source file:Main.java

public static void recycle(Bitmap bitmap) {
    if (null != bitmap && !bitmap.isRecycled())
        bitmap.recycle();//from w  ww .  ja v  a 2 s .c o  m
    bitmap = null;
    System.gc();
}

From source file:Main.java

public static boolean checkImageValid(Bitmap image) {
    if (null != image && !image.isRecycled()) {
        return true;
    } else {/*  www  .  j  ava  2 s.  com*/
        return false;
    }
}

From source file:Main.java

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