No animation on item removal on RecyclerView

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

    The proper way to remove an item from recycler view is to remove the item from data set and then telling the adapter that the item is removed like so

    myDataset.remove(position); // myDataset is List<MyObject>
    mAdapter.notifyItemRemoved(position);
    
    0 讨论(0)
  • 2020-12-23 19:52

    Another reason for a not properly working remove animation could be the RecyclerViews height. Verify that the height is match_parent and NOT wrap_content!

    0 讨论(0)
提交回复
热议问题