我正在尝试将WebPage的完整Html源加载到WebView中并且我的代码工作正常但是它给了我一个url的空(//mobile.twitter.com) 在Twitter的其他页面(如//mobile.twitter.com/account)上,它工作正常。 但是给我一个错误的那个URl; 我的代码:
twitter_WebView.addJavascriptInterface(new LoadListener(), "HTMLOUT");
twitter_WebView.loadUrl("javascript:window.HTMLOUT.processHTML(document.documentElement.outerHTML); ");
class LoadListener{
@JavascriptInterface
public void processHTML(String html) throws IOException
{
pageHTML = html; // Giving Me Null here ///
})
}