java.lang.IllegalArgumengException:Scrapped or attached views may not be recycled.isCrap:false isAttached:true
出现这个异常的原因是使用了StaggeredGridLayoutManager布局,
解决方案:需要在item对应的xml布局中添加
android:animateLayoutChanges="true"
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.
在使用RecyclerView的时候尽量避免使用 StaggeredGridLayoutManager