Java tutorial
//package com.java2s; import android.graphics.*; import android.webkit.*; public class Main { public static Bitmap getBitmapForVisibleRegion(WebView webview) { Bitmap returnedBitmap = null; webview.setDrawingCacheEnabled(true); returnedBitmap = Bitmap.createBitmap(webview.getDrawingCache()); webview.setDrawingCacheEnabled(false); return returnedBitmap; } }