我的Web视图没有显示来自Twitter链接的弹出窗口。启用了JavaScript

时间:2019-01-08 10:23:55

标签: android android-webview

创建了一个我要在其中加载以下链接的Web视图。

https://twitter.com/vaastavngo/status/1080048263665934336?s=19

我已通过webView设置启用了JavaScript。

但是它不显示弹出窗口,并且在单击弹出窗口的按钮时仅显示透明的灰色屏幕(在android chrome浏览器中选中)

外观如下:https://imgur.com/a/r6DFqGQ

这些是我为网络视图启用的设置

contentWebView.getSettings().setJavaScriptEnabled(true);

contentWebView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
    contentWebView.getSettings().setAllowFileAccess(true);
    contentWebView.getSettings().setAllowContentAccess(true);
    contentWebView.getSettings().setAllowFileAccessFromFileURLs(true);
    contentWebView.getSettings().setAllowUniversalAccessFromFileURLs(true);

contentWebView.getSettings().setPluginState(WebSettings.PluginState.ON);
    contentWebView.getSettings().setSupportMultipleWindows(true);
    contentWebView.getSettings().setSupportZoom(true);
    contentWebView.getSettings().setDomStorageEnabled(true);
    contentWebView.getSettings().setLoadsImagesAutomatically(true);
    contentWebView.clearCache(true);

弹出窗口应该看起来像这样https://imgur.com/a/UZTRDEL

但是看起来像第一个imgur链接中给出的

0 个答案:

没有答案