Android recycleView出现无法刷新的问题
一、在数据源已修改的情况下,使用了notifyDataSetChanged(),无法刷新数据,这是为何,将oncreateBindViewHolder()中的
View itemView = LayoutInflater.from(context).inflate(R.layout.rec_test, parent, false);
改为View itemView = LayoutInflater.from(context).inflate(R.layout.rec_test, null);此时可正常刷新数据,
二、如果布局是linearlayout布局,使用 View itemView = LayoutInflater.from(context).inflate(R.layout.rec_test, parent, false);对于item的布局,使用的是match_parent此时是显示可能导致布局显示不全,因为一个item都已经全布局,导致其他item不能正常显示,
在线性布局中修改需要是wrap_content,即可显示其它item布局
三、本质上View itemView = LayoutInflater.from(context).inflate(R.layout.rec_test, parent, false);表示不会直接添加到父布局中,需要addView才添加到父布局上,
而View itemView = LayoutInflater.from(context).inflate(R.layout.rec_test, null);等效于
View itemView = LayoutInflater.from(context).inflate(R.layout.rec_test, null,false);父布局为空,不会添加到父布局,此时item布局为match_parent时,可以正常显示全部item
RecycleView遇到数据无法刷新问题
最新推荐文章于 2023-12-29 21:25:23 发布