Here you can find the source of captureWebView(WebView webView)
public static Bitmap captureWebView(WebView webView)
//package com.java2s; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Picture; import android.webkit.WebView; public class Main { public static Bitmap captureWebView(WebView webView) { Picture snapShot = webView.capturePicture(); Bitmap bmp = Bitmap.createBitmap(snapShot.getWidth(), snapShot.getHeight(), Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bmp); snapShot.draw(canvas);/*from w w w.ja v a2s.c om*/ return bmp; } }