软件编程
位置:首页>> 软件编程>> Android编程>> 快速解决android webview https图片不显示的问题

快速解决android webview https图片不显示的问题

作者:KingMin_  发布时间:2021-09-23 22:38:52 

标签:android,webview,https

Android webview 从Lollipop(5.0)开始webview默认不允许混合模式,https当中不能加载http资源,需要设置开启。

解决方法:


if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
     webview.getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
   }

来源:https://blog.csdn.net/GEM_yaorao/article/details/54616390

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com