Android ListView控件使用 notifyDataSetChanged 未能正确刷新原因
adapter.notifyDataSetChanged();//此方法是可以实现刷新list,但很可能会有一个误区。
当使用此方法时,适配器会进行数据源的对比,如果同一个数据源中有更改,即执行刷新,否
则会执行方法但不会刷新列表,切记是更改数据源内容,哪怕是add或remove也不算。
Example:
1 String[] list1 = new String[]{"test1-item"}; 2 String[] list2 = new String[]{"test2-item"}; 3 String[] list3 = new String[]{"test3-item"}; 4 String[] list4= list3; 5 6 list1 = new String[]{"new test1-item"}; 7 adapter1.notifyDataSetChanged();//无效 8 9 list2[0] = "new test2-item"; 10 adapter2.notifyDataSetChanged();//有效 11 12 list4[0] = "new test3-item"; 13 adapter3.notifyDataSetChanged();//有效
上述以数据来举例,当作为List数据时,同理。
1 /** 按照postion重新排序*/ 2 public void doSort(){ 3 Collections.sort(infosList, new Comparator<Info>() { 4 5 @Override 6 public int compare(Info arg0, Info arg1) { 7 Info p1 = (Info) arg0; 8 Info p2 = (Info) arg1; 9 if (p1.sortPostion< p2.sortPostion) 10 return -1; 11 else if (p1.sortPostion== p2.sortPostion) 12 return 0; 13 else if (p1.sortPostion> p2.sortPostion) 14 return 1; 15 return 0; 16 } 17 }); 18 /** Info:实体类 {“title”, sortPostion}*/ 19 // infosList.add(new Info("new", 7)); 无效 20 infosList.get(2).title = "change"; // 有效 21 adapter.notifyDataSetChanged(); 22 } 23 很显然,重新排序后,事实上数据源的每一项值并没有更改,因此,直接刷新列表是无效的,即时add一项同样无效,测试发现,当
24 给其中某一项重新赋值后,列表刷新效果才会出来,但排序依然没有按照指针重新排列,只能重新给adapter重新addAll(List<Info>)才可以。
由于Java基础知识欠缺,因此并未明白为什么会这样日后看下底层代码再深究。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。