Java tutorial
//package com.java2s; //License from project: Apache License import android.graphics.Bitmap; import android.view.View; public class Main { public static Bitmap getViewBitmap(View view) { view.setDrawingCacheEnabled(true); Bitmap bitmap = Bitmap.createBitmap(view.getDrawingCache()); view.setDrawingCacheEnabled(false); view.destroyDrawingCache(); return bitmap; } }