'Recyclerview item deleting not working properly

I have a Recyclerview that I'm trying to delete items inside it's adapter. I have a trouble here: Items are deleting very well but some Views that belong to deleted items are appearing on remained items(Overlapping)! Here is my code:

int position = holder.getAbsoluteAdapterPosition();
pointList.remove(position);
notifyItemRemoved(position);
notifyItemRangeChanged(position, pointList.size());


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source