問題
Android WebView加載URL,最后顯示白屏
原因
通過PC瀏覽器調試發現鏈接有Mixed Content警告,而Android Lollipop之后默認不允許Mixed content
mixed-content
解決
WebSettings setting = webView.getSettings();
?
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
setting.setMixedContentMode(WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE);
}
參考
https://stackoverflow.com/questions/32155634/android-webview-not-loading-mixed-content