我正在使用Google Paging Library显示来自服务器的图像。当我显示来自Localhost的图像时,它可以完美工作,但在实时服务器上,图像却闪烁。我试图将Localhost睡眠2秒以延迟响应,但是localhost的图像没有闪烁。我的问题与image-flickering-while-scrolling-in-recyclerview问题相同。但是我没有使用asynctask,所以无法使用它的答案。
Recyclerview适配器。
public class ItemAdapter extends PagedListAdapter<Item, ItemAdapter.ItemViewHolder> {
private Context mCtx;
ItemAdapter( Context mCtx) {
super(DIFF_CALLBACK);
this.mCtx = mCtx;
}
@NonNull
@Override
public ItemViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View view = LayoutInflater.from(mCtx).inflate(R.layout.recyclerview_users, parent, false);
return new ItemViewHolder(view);
}
private static DiffUtil.ItemCallback<Item> DIFF_CALLBACK =
new DiffUtil.ItemCallback<Item>() {
@Override
public boolean areItemsTheSame(Item oldItem, Item newItem) {
return oldItem.id == newItem.id;
}
@Override
public boolean areContentsTheSame(Item oldItem, Item newItem) {
return oldItem.equals(newItem);
}
};
@Override
public void onBindViewHolder(@NonNull ItemViewHolder viewHolder, int position) {
Item item = getItem(position);
final ItemViewHolder holder = (ItemViewHolder) viewHolder;
holder.image_date.setText(item.getDate());
GlideApp
.with(mCtx)
.asBitmap()
.load(item.getThumb())
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(holder.imageview);
}
class ItemViewHolder extends RecyclerView.ViewHolder {
TextView image_date, image_weight, imageHit;
ImageView imageView, imageView2;
ProgressBar progressBar;
ItemViewHolder(View view) {
super(view);
image_date = itemView.findViewById(R.id.image_date);
image_weight = itemView.findViewById(R.id.image_weight);
imageHit = itemView.findViewById(R.id.hit);
imageView = (ImageView) itemView.findViewById(R.id.thumb_image);
imageView2 = itemView.findViewById(R.id.thumb_image2);
progressBar = itemView.findViewById(R.id.progressBarThumb);
}
}
}
我正在使用这种方法。 https://www.simplifiedcoding.net/android-paging-library-tutorial。 当我使用与此方法相同的代码时。 IT工作正常。当我更改代码使用时会发生问题。 附注-问题是何时加载数据。数据一旦加载,就可以正常工作。
答案 0 :(得分:0)
使用此代码代替滑行,然后重试
Picasso.with(context) .load(url) .resize(50, 50) // Your preferred size
.centerCrop()
.into(imageView);