我有 html 内容和图像要加载到 jelly bean OS 的 webview 中。图片取自sd卡。
以下是内容:
<html>
<head>
<title>Test Name</title>
</head>
<body>
<p><font color="#003399" size="2">
<center>
<a href="file://storage/sdcard0/images/img.jpg" target="_blank" >
<img src="file://storage/sdcard0/images/img.jpg" />
</a>
</center>
</p>
</font> Contetnt Goes Here
</body>
</html>
myWebView.loadDataWithBaseURL("",webcontent, "text/html", "UTF-8", null);
它在 ICS OS 中工作,但不会加载到 jelly bean OS Web 视图中。
提前致谢