无论如何要清除ListActivity
中的listitem数据,然后使用setListAdapter
(适配器)显示数据?问题是它不断在ListActivity中附加listitem数据并显示许多listitem数据。我使用android.widget.SimpleAdapter作为适配器。我想清理数据然后显示数据。
class Receiver extends BroadcastReceiver {
public void onReceive(Context c, Intent intent){
adapter.notifyDataSetChanged();
........
}
setListAdapter(adapter);
}
}
答案 0 :(得分:0)
你应该使用
adapter.notifyDataSetChanged();
http://developer.android.com/reference/android/widget/BaseAdapter.html#notifyDataSetChanged()