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
RecyclerView
Use notifyItemRemoved(position) instead of notifyDataSetChanged() like below
notifyItemRemoved(position)
notifyDataSetChanged()
myDataset.remove(position); notifyItemRemoved(position);
because notifyDataSetChanged() simply notifies the updated data without any animations.