No animation on item removal on RecyclerView

后端 未结 8 1111
故里飘歌
故里飘歌 2020-12-23 18:47

I am using RecyclerView for the first time. Everything is working fine except that there is no animation on item removal even though the animation on item addit

8条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-23 19:34

    Use notifyItemRemoved(position) instead of notifyDataSetChanged() like below

    myDataset.remove(position);
    notifyItemRemoved(position);
    

    because notifyDataSetChanged() simply notifies the updated data without any animations.

提交回复
热议问题