首页 > 代码库 > Android webview Mixed Content无法显示图片解决
Android webview Mixed Content无法显示图片解决
转自:http://blog.csdn.net/crazy_zihao/article/details/51557425
前言
在使用WebView加载https资源文件时,如果认证证书不被Android认可,那么会出现无法成功加载对应资源问题。那么,我们就要针对这一状况作出对应的处理。
解决步骤
1. 启用mixed content
在Android5.0中,WebView方面做了些修改,如果你的系统target api为21以上:
- 系统默认禁止了mixed content和第三方cookie。可以使用setMixedContentMode() 和 setAcceptThirdPartyCookies()以分别启用。
- 系统现在可以智能选择HTML文档的portion来绘制。这种新特性可以减少内存footprint并改进性能。若要一次性渲染整个HTML文档,可以调用这个方法enableSlowWholeDocumentDraw()
- 如果你的app的target api低于21:系统允许mixed content和第三方cookie,并且总是一次性渲染整个HTML文档。
在使用WebView的类中添加如下代码: -
[html] view plain copy
- // android 5.0以上默认不支持Mixed Content
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
- webView.getSettings().setMixedContentMode(
- WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE);
- }
2. 设置WebView接受所有网站的证书
在认证证书不被Android所接受的情况下,我们可以通过设置重写WebViewClient的onReceivedSslError方法在其中设置接受所有网站的证书来解决,具体代码如下:
[html] view plain copy
print?
- webView.setWebViewClient(new WebViewClient() {
- @Override
- public void onReceivedSslError(WebView view,
- SslErrorHandler handler, SslError error) {
- // TODO Auto-generated method stub
- // handler.cancel();// Android默认的处理方式
- handler.proceed();// 接受所有网站的证书
- // handleMessage(Message msg);// 进行其他处理
- }
- });
注:在重写WebViewClient
的onReceivedSslError
方法时,注意一定要去除onReceivedSslError
方法的super.onReceivedSslError(view, handler, error);
,否则设置无效。
Android webview Mixed Content无法显示图片解决
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。