Here you can find the source of convertViewToBitmap(View view)
public static Bitmap convertViewToBitmap(View view)
//package com.java2s; //License from project: Open Source License import android.graphics.Bitmap; import android.view.View; import android.view.View.MeasureSpec; public class Main { public static Bitmap convertViewToBitmap(View view) { view.measure(/*from w w w .j a va 2 s .c o m*/ MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED)); view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight()); view.buildDrawingCache(); Bitmap bitmap = view.getDrawingCache(); return bitmap; } }