admin 管理员组文章数量: 887017
使用Glide版本:4.8.0
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
已添加网络权限
<uses-permission android:name="android.permission.INTERNET" />
但是加载不出来图片。
经过查询,问题出在Android版本上:Android9.0包括之后默认的网络访问方式是https的,如果图片是http的,就需要设置一下。
解决方法:在res下新建一个xml文件夹,然后在xml文件夹下新建network_security_config.xml
network_security_config.xml代码如下:
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
然后在AndroidManifest.xml里面的application标签中添加:
这就可以了。
版权声明:本文标题:Android Glide加载网络图片不显示,但浏览器能打开图片 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1726854111h1040010.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论