setBlockNetworkImage会阻止本地图像吗?

时间:2018-10-22 14:47:30

标签: android webview android-webview

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>

0 个答案:

没有答案