我们正在构建一个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);
有没有建议?
答案 0 :(得分:0)
找到了答案。我刚刚添加了以下代码:
android.webkit.CookieManager.getInstance()setAcceptThirdPartyCookies(this.myWebView, true);