0
我使用webview,我想獲取當前頁面的html。 示例我使用url webview.loadUrl(「http://google.com」); 並獲得HTML https://www.google.co.uk/#q=androidAndroid WebView獲取html當前頁面
我使用webview,我想獲取當前頁面的html。 示例我使用url webview.loadUrl(「http://google.com」); 並獲得HTML https://www.google.co.uk/#q=androidAndroid WebView獲取html當前頁面
看看以下問題:
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將調用每一個頁面加載時間。