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