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

前端 未结 27 2830
灰色年华
灰色年华 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:16

    I solved this issue by calling

    setHasStableIds(true);
    

    in the adapter's constructor and overriding getItemId in the adapter:

    @Override
    public long getItemId(int position) {
        return position;
    }
    

提交回复
热议问题