recyclerview出现的问题

来源:互联网 发布:特别想找个女朋友知乎 编辑:程序博客网 时间:2024/05/16 00:49

 “scrapped or attached views may not be recycled”

这个问题要设置下面参数为false,因为默认是true

android:animateLayoutChanges="false"



onCreateViewHolder 没有执行


LinearLayoutManager mLayoutManager = new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, true);

mNationRecyclerView.setLayoutManager(mLayoutManager);


因为没设置 manager 所以recyclerview不执行的

0 0
原创粉丝点击