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

前端 未结 5 1377
北荒
北荒 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:58

    I think it is because your adapter has adapter.setHasStableIds(true) is true and getItemId is not overridden. So recyclerView try to find holder with the same id and reuse it.

提交回复
热议问题