android webview 访问https链接中http的图片或视频

android 通过webview访问https网页,网页里嵌套有http地址的图片或者视频,报错

在这里插入图片描述

Mixed Content: The page at 'xxx' was loaded over HTTPS, but requested an insecure resource 'xxx'.

解决方法

 webSettings.setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);

你可能感兴趣的:(android开发,android,webview,https)