为什么Webview.getDrawingCache()以不同的样式返回内容的图像?

时间:2016-10-09 15:17:51

标签: android pdf.js

我需要截取Webview的截图。 这是我使用的代码:

mWebView.setDrawingCacheEnabled(true);
mWebView.buildDrawingCache(true);
Bitmap bitmap = Bitmap.createBitmap(mWebView.getDrawingCache());
mWebView.setDrawingCacheEnabled(false);
return bitmap;

这是Webview的实际状态 This is the actual state of the Webview

这是我尝试获取屏幕截图时获得的图像 This is the image I get when I try to get the screenshot

有关为何发生这种情况的任何想法?

0 个答案:

没有答案