WebView API setBlockNetworkImage
应该根据其文档阻止来自网络的图像。但是通过测试,我确定此API还会阻止本地图像。为什么?
我的Android代码
webView = (WebView) findViewById(R.id.web);
webView.getSettings().setBlockNetworkImage(true);
webView.loadUrl("file:///android_asset/test.html");
test.html中的代码
<html>
<body>
<img src="file:///android_asset/CMS_Creative_164657191_Kingfisher.jpg" />
</body>
</html>