Hey can any one suggest for web view. I have html string which has image URL.But image does not get loaded. Also I want back forward navigation.
正在做的是
webView.loadDataWithBaseURL("data:", html, "text/html", "utf-8", html);
以及
html="<html><script type="text/javascript">
function startTime(){var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
m=checkTime(m);
s=checkTime(s);
document.getElementById( txt ).innerHTML=h+":"+m+":"+s;
}</script><body bgcolor="black"><a href="image.png" target="parent" style="color:pink">TESTING NOTES</a>
<p style="color:white" >Finding faults early</p><p style="color:white">To Test Reload Check Current Time:<div id="txt" style="color:white"></div></p></body></html>";
图像:png在资产夹中。 也没有执行。