Android webview加载外部网页时如何在网页上加载Android本地图片
大家讲道理
大家讲道理 2017-04-17 17:09:14
0
3
615

我想在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本地的网页时,这种方式是可以的。

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回复(3)
黄舟
    webview.getSettings().setAllowFileAccess(true);
    webview.getSettings().setAllowFileAccessFromFileURLs(true);
    webview.getSettings().setAllowUniversalAccessFromFileURLs(true);

参考这几个设置吧。

PHPzhong

使用支持 JS 调用本地方法

webView.getSettings().setJavaScriptEnabled(true);

在本地方法中调用本地图片传给 js,随后显示在网页上。

大家讲道理

可以参考这篇文章http://blog.csdn.net/qq122627... 关于webview加载本地图片的一些问题

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板