美文网首页
清空ListView

清空ListView

作者: MarkShaun | 来源:发表于2016-03-21 16:34 被阅读134次

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

    mLvAdapter.setDataList(null);    
    mLvAdapter.notifyDataSetInvalidated();    
    return;
}```

相关文章

网友评论

      本文标题:清空ListView

      本文链接:https://www.haomeiwen.com/subject/auvklttx.html