是否可以使用Glide在同一适配器上显示GIF和JPG图像?如果可能,那么Glide中的代码看起来如何?
答案 0 :(得分:2)
您可以这样做
String str = "image or gif url";
if (str.contains(".gif")){
Glide.with(this)
.asGif()
.load(str)
.into(imgeview);
}else{
Glide
.with(this)
.load(str)
.centerCrop()
.into(myImageView);
}