问题描述
- android webview https网页中的http图片加载不出来
- RT,在项目中用webview加载一个https开头的网页,网页加载出来了,但网页里http开头的图片在android 4.4的手机上能加载出来,在android5.0.1 的手机上就加载不出来。
android 5.0.1:
The page at 'https://api.app-test.cn/activity/view?id=25' was loaded over HTTPS but displayed insecure content from 'http://123.206.59.74:9998/20160410/a11c236e434609ad.jpg': this content should also be loaded over HTTPS
解决方案
求大神解答。。。。。。。。
解决方案二:
少配置了一个属性,你看看你是不是有没有配置的我前一段看同事代码就发现了同样问题配置一下就ok了
webSettings = webView.getSettings();
webSettings.setDomStorageEnabled(true);
webSettings.setJavaScriptEnabled(true);
webSettings.setUseWideViewPort(true);
webSettings.setLoadWithOverviewMode(true);
时间: 2024-10-24 17:55:33