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

前端 未结 27 2892
灰色年华
灰色年华 2020-11-29 19:50

I\'m using a simple implementation of RecyclerView taken from the Android website using a StaggeredGridLayoutManager and I keep getting this error

27条回答
  •  悲哀的现实
    2020-11-29 20:21

    1、remove:remove data from list.

    2、notifyDataSetChanged:notifyDataSetChanged();

    3、notifyItemRemoved:show animation.

    4、notifyItemRangeChanged:range view size and redraw the viewHolders(onBindViewHolder methods)

提交回复
热议问题