我对 webview 内容大小有一些问题。我需要将整个网页转换为单个图像并尝试了此代码
Bitmap screenshot;
screenshot = Bitmap.createBitmap(view.getWidth(), view.getContentHeight(), Bitmap.Config.ARGB_8888);
final Canvas c =new Canvas(screenshot);
view.draw(c);
其中“视图”是一个 WebView 对象
但结果是具有 1024x769 像素的图像。我的网页相当大(高度约为 2000 像素)。我尝试了不同的方法来解决这个问题,但仍然是零回报。