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);
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);