RecyclerView does not update after removing an item
You need to use this 3 lines to make it work
mItemList.remove(position);
notifyItemRemoved(position);
notifyItemRangeChanged(position, mItemList.size());
You need to use this 3 lines to make it work
mItemList.remove(position);
notifyItemRemoved(position);
notifyItemRangeChanged(position, mItemList.size());