No animation on item removal on RecyclerView

后端 未结 8 1070
故里飘歌
故里飘歌 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:31

    Solved it.

    The issue was that, after calling mAdapter.remove(position), another part of my code was calling mAdapter.notifyDataSetChanged() which I assume stops the removal animation.

    To sum up, if you call mAdapter.notifyDataSetChanged while there is an animation ongoing the animation will stop.

提交回复
热议问题