我正在尝试使用webView显示网页。我使用loadDataWithBaseUrl来显示网页。
webView = (WebView) findViewById(R.id.webview);
WebSettings settings=webView.getSettings();
settings.setJavaScriptEnabled(true);
settings.setJavaScriptCanOpenWindowsAutomatically(true);
webView.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress)
{
(activity).setTitle("Loading...");
(activity).setProgress(progress * 100);
if(progress == 100)
activity.setTitle(R.string.app_name);
}
});
webView.setWebViewClient(new WebViewClient() {
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
{
}
});
String s= "file://"+f.getAbsolutePath()+"/";
webView.loadDataWithBaseURL(BASE_URL,HTMLData, "text/html", "utf-8","");
我面临的问题是,应该在onLoad上调用的页面上的javascript没有运行。浏览器正确显示网页。此外,loadUrl方法给出了正确的结果。请提出可行的解决方案。 编辑:我把它整理好了。 javascript文件有错误。请忽略。