Glide recyclerview loading duplicate image

后端 未结 2 1898
轻奢々
轻奢々 2021-01-23 09:56

I have a recyclerview with diffutil. Already I using Glide to load images inside the ImageViews.

on the onBindV

2条回答
  •  爱一瞬间的悲伤
    2021-01-23 10:34

    I know its late but hope it will help someone. Override these two methods in your adapter.

      @Override
    public long getItemId(int position) {
      return position;
    }
    
      @Override
    public int getItemViewType(int position) {
     return position;
    }
    

提交回复
热议问题