前段時間作的一個書店項目其閱讀模塊中用到了WebView + js,今天把WebView這塊用到的幾個特性記錄下。html
其主要用到了webView的快照與屏幕的截屏。部分代碼以下:web
[html] view plaincopycanvas
/** eclipse
* 截取webView可視區域的截圖 spa
* @param webView 前提:WebView要設置webView.setDrawingCacheEnabled(true); .net
* @return orm
*/ htm
private Bitmap captureWebViewVisibleSize(WebView webView){ blog
Bitmap bmp = webView.getDrawingCache(); ip
return bmp;
}
這個方法只截取屏幕中顯示出來部分的webView畫面,未顯示的部分不會被截取。
[html] view plaincopy
/**
* 截取webView快照(webView加載的整個內容的大小)
* @param webView
* @return
*/
private 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);
return bmp;
}
這個看好與上一個是不一樣的,他是截取webView的整個頁面,未顯示的也會被截取。
[html] view plaincopy
/**
* 截屏
* @param context
* @return
*/
private Bitmap captureScreen(Activity context){
View cv = context.getWindow().getDecorView();
Bitmap bmp = Bitmap.createBitmap(cv.getWidth(), cv.getHeight(),Config.ARGB_8888);
Canvas canvas = new Canvas(bmp);
cv.draw(canvas);
return bmp;
[html] view plaincopy
}
這個不用多說你們都明白就是手機屏幕的快照~~
核心方法就這些了。知道你們都喜歡要項目源碼,最好是下載下來能導入eclipse運行的(我是好喜歡這樣滴博文)~~
我這寫好的Demo是把截取的快照存儲到SD卡中,須要的猛擊這裏哈~~~