URL的域似乎包含下划线,导致图像下载失败。如果我是正确的,请告诉我
答案 0 :(得分:0)
使用Glide这很简单。
将此添加到您的应用程序gradle。
compile 'com.github.bumptech.glide:glide:3.6.1'
然后使用这一行代码。不需要添加异步任务。
Glide.with(context).load(ImageUrl)
.placeholder("drawable to show while loading image")
.error("drawable to show if loading image fails")
.into(imageView);
你可以用Glide检查这个Link
不要忘记为您的清单添加权限。