替代webviews在KitKat之前评估API的JavaScript函数

时间:2016-06-07 14:57:15

标签: android webview

我需要在加载页面后的某个状态WebView中获取所显示数据的内容(用户必须向下滚动才能加载更多内容)。这意味着,WebViewClient onPageFinished功能对我不起作用......

我的功能如下:

@TargetApi(Build.VERSION_CODES.KITKAT)
private void parsePage()
{
    webview.evaluateJavascript(
            "(function() { return document.getElementsByTagName('html')[0].innerHTML; })();",
            new ValueCallback<String>() {
                @Override
                public void onReceiveValue(String html) {
                    // handle html content...
                }
            });
}

有没有人在KitKat之前知道API的替代解决方案?

0 个答案:

没有答案