Recyclerview Adapter and Glide - same image every 4-5 rows

前端 未结 5 1375
北荒
北荒 2020-12-02 13:01

I have this problem - just for testing purposes I added ParseFile to one of ParseObject from received list. Instead of showing it only in that row

5条回答
  •  伪装坚强ぢ
    2020-12-02 13:51

    When "logo" is null, you get the recycled image instead of clearing it. Add this code to properly clear the image:

    holder.imageView.setImageDrawable(null);
    

提交回复
热议问题