Android WebView无法加载

时间:2014-06-05 05:18:13

标签: android android-webview

我使用webView.loadDataWithBaseURL(null, html, null, "utf-8", null);刷新WebView的方法,但第二次没有刷新UI。它第一次运作良好。

1 个答案:

答案 0 :(得分:0)

您想如何刷新Webview?取决于您的项目要求。 Try如果你想要它OnCLickListener。如果您希望资源或任何目录中的数据为Webview,则可以使用loadDataWithBaseURL()和适当的参数。

您可以使用以下代码

通过Webview加载图片
String html;
html = html.concat("<html><head><title>TITLE!!!</title></head>");
html = html.concat("<body><h1>Image?</h1><img src="icon.png" /></body></html>");
webview . loadDataWithBaseURL("file:///android_res/drawable/", html, "text/html", "UTF-8", null);

了解更多详情try