Example usage for android.view View getDrawingCache

List of usage examples for android.view View getDrawingCache

Introduction

In this page you can find the example usage for android.view View getDrawingCache.

Prototype

@Deprecated
public Bitmap getDrawingCache() 

Source Link

Document

Calling this method is equivalent to calling getDrawingCache(false).

Usage

From source file:Main.java

public static Bitmap getBitmapForView(View view) {
    view.setDrawingCacheEnabled(true);
    return view.getDrawingCache();
}

From source file:Main.java

public static Bitmap convertViewToBitmap(View view) {
    view.buildDrawingCache();//from ww  w  .j a va2  s.  c  o m
    Bitmap bitmap = view.getDrawingCache();
    return bitmap;
}

From source file:Main.java

public static Bitmap getDrawingCache(View view) {
    view.setDrawingCacheEnabled(true);// w w  w .j  a v a2  s  .com
    Bitmap bitmap = view.getDrawingCache();
    /*view.setDrawingCacheEnabled(false);
    view.destroyDrawingCache();*/
    return bitmap;
}

From source file:Main.java

public static Bitmap getBitmap(View view) {
    view.setDrawingCacheEnabled(true);//from  ww w.  j  a v  a 2  s.  c o m
    Bitmap bitmap = Bitmap.createBitmap(view.getDrawingCache());
    view.setDrawingCacheEnabled(false);
    return bitmap;
}

From source file:Main.java

public static Bitmap convertViewToBitmap(View view) {
    view.setDrawingCacheEnabled(true);//buildDrawingCache();
    Bitmap bitmap = view.getDrawingCache();
    return bitmap;
}

From source file:Main.java

public static Bitmap takeScreenShot(View view) {
    view.setDrawingCacheEnabled(true);//from w  w w .  ja v  a2  s  . co m
    view.buildDrawingCache();
    return view.getDrawingCache();
}

From source file:Main.java

public static Bitmap getViewBitmap(View view) {
    view.setDrawingCacheEnabled(true);//from w w  w  . j  av  a  2  s. c  om
    Bitmap bitmap = Bitmap.createBitmap(view.getDrawingCache());
    view.setDrawingCacheEnabled(false);
    view.destroyDrawingCache();
    return bitmap;
}

From source file:Main.java

public static Bitmap captureView(View v) {
    v.setDrawingCacheEnabled(true);
    v.buildDrawingCache();
    return v.getDrawingCache();
}

From source file:Main.java

public static Bitmap viewToBitmap(View view) {
    view.setDrawingCacheEnabled(true);/*from w ww.  j  av  a 2  s  .  c  o  m*/
    view.buildDrawingCache();
    Bitmap bm = view.getDrawingCache();
    return bm;
}

From source file:Main.java

public static Bitmap getBitmap(View view) {
    final View layout = view.getRootView();
    layout.setDrawingCacheEnabled(true);
    final Bitmap bitmap = layout.getDrawingCache();
    return bitmap;
}