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);,此时可正常刷新数据