在使用Glide加载网络图片的时候,网络权限给了,但就是不显示。后来通过RequestListener中打印Log发现错误
java.io.IOException: Cleartext HTTP traffic to dict.youdao.com not permitted
原因是:Android引入了对Https的推荐支持,而Android P的系统上面默认所有Http的请求都被阻止了方法
解决办法:在AnroidManifest.xml中的application设置android:usesCleartextTraffic="true"