WebView中显示的某些环节空白视图视图、环节、空白、WebView

2023-09-07 01:41:48 作者:情怀如诗

我使用的WebView:

I'm using a webview:

        WebView webview = new WebView(this);
        webview.getSettings().setJavaScriptEnabled(true);
        webview.getSettings().setLoadWithOverviewMode(true);
        webview.getSettings().setUseWideViewPort(true);
        webview.getSettings().setGeolocationEnabled(true);
        webview.setWebViewClient(new WebViewClient(){

                @Override
                public boolean shouldOverrideUrlLoading(WebView view, String url) {
                    loading.show();
                    view.loadUrl(url);
                    return true;
                }
                @Override
                public void onPageFinished(WebView view, final String url) {
                    loading.dismiss();
                    super.onPageFinished(view, url);
                }
            });

对于大多数链接,它工作得很好。但, http://m.stubhub.com (以及任何同一域),那只能说明一个空白视图(尽管它完成加载页)。有没有设置,我失去了什么?

For most links, it works just fine. But for, http://m.stubhub.com (and any of the same domain), it only shows a blank view (though it's finished loading the page). Are there settings, I'm missing or something?

顺便说一句,没有任何错误,据我可以告诉。

Btw, there aren't any errors, as far as I can tell.

建议/意见很大AP preciated。谢谢你。

Suggestions/advice greatly appreciated. Thanks.

推荐答案

解决方案是要求该网站的权限。它使用HTML5的存储,所以对于DOMStorage许可必须启用...

The solution was the permissions the site required. It uses HTML5 storage, so permission for DOMStorage had to be enabled...