我使用webview,我想得到当前页面的HTML。 例如我使用网址 webview.loadUrl( “http://google.com”); 并获取html https://www.google.co.uk/#q=android
答案 0 :(得分:-1)
看一下以下问题:
How do I get the web page contents from a WebView?
在这里你会得到一个回调
class MyJavaScriptInterface
{
@SuppressWarnings("unused")
public void processHTML(String html)
{
// process the html as needed by the app
}
}
每次加载页面时都会调用processHTML。