RecyclerView crashes when “scrapped or attached views may not be recycled”

This error is caused if in your XML you have android:animateLayoutChanges set to true and you call notifyDataSetChanged() on the RecyclerView’s adapter in the Java code.

So, just avoid using android:animateLayoutChanges with RecyclerViews.

Leave a Comment