Sharepoint图片未在Android

时间:2018-08-24 13:03:35

标签: android sharepoint webview

我们正在构建一个Android应用,该应用基本上是一个显示SPA的Web视图。 SPA向Sharepoint租户进行身份验证,以从Sharepoint租户获取内容。这在Web浏览器和iOS Web视图中均能完美运行,但在Android上,Sharepoint图像未显示。我已经尝试过这些设置,但是没有运气。

webSettings.setJavaScriptEnabled(true);
webSettings.setDomStorageEnabled(true);
webSettings.setAppCacheEnabled(true);
webSettings.setAllowFileAccess(true);
webSettings.setAllowContentAccess(true);
webSettings.setLoadsImagesAutomatically(true);
webSettings.setAllowUniversalAccessFromFileURLs(true);
webSettings.setLoadsImagesAutomatically(true);
webSettings.setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);

有没有建议?

1 个答案:

答案 0 :(得分:0)

找到了答案。我刚刚添加了以下代码:

android.webkit.CookieManager.getInstance()setAcceptThirdPartyCookies(this.myWebView, true);