1

我正在尝试编写一组名称并将它们保存在列表视图中,但是我需要每次可以更新列表时清除其中的所有内容并添加所有新更新,并且列表动态具有增量每次更新都会增加一。

我该怎么做,因为我被保存的列表卡住了,无法删除任何旧的编队,非常感谢

4

2 回答 2

1

You should create an Adapter, it will contain the info displayed in the ListView. If you want to remove all the info displayed in the ListView, just remove the info contained in the Adapter, set a new one and notifyDataChanged().

于 2013-02-19T22:17:55.510 回答
0

使用 sqlite 存储列表数据并使用 CursorAdapter 填充列表。当您将项目添加到表中时,它将显示在您的列表视图中。在这里查看有关在 android 中使用 sqlite 数据库的更多信息。

于 2013-02-19T21:46:02.170 回答