我正在尝试使用Glide将tinyUrl加载到ImageView中。下面是上面提到的URL。
String imageUrl = "http://hck.re/3Cm0IX";
Glide.with(context)
.load(imageUrl)
.into(imageView);显然这是行不通的。
发布于 2019-11-15 19:11:21
尝试使用以下内容更改您的imageUrl:
String imageUrl = "https://s3-ap-southeast-1.amazonaws.com/he-public-data/aik_alif4181734.jpg" ;发布于 2019-11-18 13:38:00
https://stackoverflow.com/questions/58875098
复制相似问题