滚动时 webview 背景模糊

webview background blurring while scrolling

我的问题是滚动时 webview 背景模糊。背景是图像。我的代码:

WebView webview = (WebView) findViewById(R.id.webview);
webview.setBackgroundColor(0x00000000);
webview.setBackgroundResource(R.drawable.regularbackground);

将此添加到您的代码中:

webview.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
webview.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
webview.getSettings().setJavaScriptEnabled(true);