我想在webview加载外部网页时,网页中需要的图片都从Android本地加载,应该如何实现呢?
我现在试了一种办法,如下:
网页上加载图片的代码如下:
<html>
<body background='file:///storage/emulated/0/bcitImg/img/bodybg.png'>
</body>
</html>
Android加载网页的代码如下:
pbWebView.loadUrl("http://*.*.*.*:8080/bcis/jsp/bcit/welcome.jsp");
运行时提示:
[INFO:CONSOLE(143)] "Not allowed to load local resource: file:///storage/emulated/0/bcitImg/img/footer.png", source: http://...:8080/bcis/jsp/bcit/welcome.jsp
是需要webview设置什么权限吗,还是我方法不对。webview加载Android本地的网页时,这种方式是可以的。
参考这几个设置吧。
使用支持 JS 调用本地方法
在本地方法中调用本地图片传给 js,随后显示在网页上。
可以参考这篇文章http://blog.csdn.net/qq122627... 关于webview加载本地图片的一些问题