loseboycn
2019-08-02 22:22
SDK 28 (Android 9.0) 图片不能正常加载方案:
1. 在res目录下创建xml文件夹,在xml下创建network_security_config.xml文件
<?xml version="1.0" encoding="utf-8"?> <network-security-config> <base-config cleartextTrafficPermitted="true" /> </network-security-config>
android:networkSecurityConfig=”@xml/network_security_config”
有用的,我也在res添加xml文件了,但是不行。又用了这种方法结果出来了,之前android是10.0版本的。用了8.0 版的
我是模拟器的,先要检查你的模拟器是不是能联网,然后把app先卸载掉,再重新运行!
强啊大佬
依旧加载不出来怎么办
问题原因:
在api上访问http协议被认为时不安全
解决办法:
1. 在res目录下创建xml文件夹,在xml下创建network_security_config.xml文件
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
2. 在AndroidManifest文件中配置
android:networkSecurityConfig=”@xml/network_security_config”
我的云音乐(二)
7936 学习 · 82 问题
相似问题