如何在webview中加载本地包含图片的html文件?


在使用mWebView.loadUrl("file:///android_asset/index.html");时只能显示html文件内的文字,而无法显示里面的图片。
附上html内容:

   
  <html>
  
<head></head>
<style>
body{ width:480px;}
.pic{ text-align:center;}
.content{ padding:0 15px;}
</style>
<body>
<div class="pic"><img src="file:///android_asset/pic.jpg" /></div>
<div class="content">测试</div>
</body>

</html>

Android Androidwebview

sola7 12 years, 3 months ago

试一试这样<img src="./images/pic.png" />这里pic.png图片位置在assets目录下的images文件夹里。你也可以根据自己需要更改路径。

撸啊撸啊撸 answered 12 years, 3 months ago

Your Answer