我在果冻豆OS中的webview中加载了html内容和图像。图像来自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视图中。
提前致谢