当数据发生变化时,我正在尝试重新加载列表视图。但它不起作用。这是我正在使用的代码
localPits.clear();//
this.adapter.clear();
//Fetch new data and update the list
this.localPits.addAll(pl);
this.adapter.notifyDataSetChanged();
this.lst_Pits.invalidate();
每次我调用这部分代码时,都会成功删除现有值。但新值不会加载到列表视图中。
我怎么能在android中做到这一点?谢谢