小智 28
您可以将所有html和图像放到资源目录中,例如:
assets\html\
index.html
image1.png
image2.jpg
Run Code Online (Sandbox Code Playgroud)
对html文件中图像的所有引用都应该是file:// url的形式
<html>
<body>
<img src="file:///android_asset/html/image1.png">
<img src="file:///android_asset/html/image2.jpg">
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
毕竟,像往常一样将此HTML加载到WebView:
webView.loadUrl("file:///android_asset/html/index.html");
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
8402 次 |
| 最近记录: |