How do I retrieve all HTML content currently displayed in a WebView?
I found WebView.loadData() but I couldn\'t find the opposite equivalent (e.g. WebVi
WebView.loadData()
webView.evaluateJavascript("(function(){return window.document.body.outerHTML})();", new ValueCallback() { @Override public void onReceiveValue(String html) { } });