問題 : Glide 配合 RecyclerView 加載圖片時候第一次會經常顯示不出來圖片,問題代碼:
public void loadImage(@NonNull ImageView imageView, Object path, @DrawableRes int placeholder) {
RequestOptions options = new RequestOptions()
.centerCrop()
.placeholder(placeholder);
Glide.with(imageView.getContext())
.load(path)
.apply(options)
.transition(DrawableTransitionOptions.withCrossFade())
.into(imageView);
}
解決方式:
注釋掉 Fade 動畫, 並調用 dontAnimate() 方法
public void loadImage(@NonNull ImageView imageView, Object path, @DrawableRes int placeholder) {
RequestOptions options = new RequestOptions()
.centerCrop()
.placeholder(placeholder);
Glide.with(imageView.getContext())
.load(path)
.apply(options)
// .transition(DrawableTransitionOptions.withCrossFade())
.dontAnimate()
.into(imageView);
}