http://stackoverflow.com/questions/3802304/clear-listview-content
使用listView.setAdapter(null);
清空后,在搜索结果不为空的时候还要再次指定Adapter,所以我采用了下面的方法:
mLvAdapter.setDataList(null);
mLvAdapter.notifyDataSetInvalidated();
return;
}```
http://stackoverflow.com/questions/3802304/clear-listview-content
使用listView.setAdapter(null);
清空后,在搜索结果不为空的时候还要再次指定Adapter,所以我采用了下面的方法:
mLvAdapter.setDataList(null);
mLvAdapter.notifyDataSetInvalidated();
return;
}```