修复直播间多人PK时,用户赠送礼物后,顺序图片(1、2、3、4)闪烁问题

This commit is contained in:
老皮
2024-11-05 15:51:40 +08:00
parent 9984adfb8e
commit 16cb90d9bc
2 changed files with 13 additions and 5 deletions

View File

@@ -198,6 +198,14 @@ public class ImgLoader {
.skipMemoryCache(SKIP_MEMORY_CACHE)
.into(imageView);
}
public static void displayNew(Context context, int res, ImageView imageView) {
if (!contextIsExist(context)) {
return;
}
Glide.with(context)
.load(res)
.into(imageView);
}
/**
* 显示视频封面缩略图