在运行时将数据附加到android webview

时间:2011-03-31 08:02:41

标签: android webview

我正在网页浏览中显示一个网页。我在运行时向webview添加了更多内容,如下所示

webContent=//first html page as string content
mWebView.loadDataWithBaseURL("",webContent, "text/html", "UTF-8","" );
// some code
webContent=//second html string as string content mWebView.loadDataWithBaseURL("file:///sdcard/",webContent, "text/html", "UTF-8","" );

但是我得到了  03-31 13:26:45.448:INFO / System.out(462):java.lang.NullPointerException
任何soln?

1 个答案:

答案 0 :(得分:0)

您的基本网址(loadDataWithBaseURL()的第一个参数)不应为空。