是否可以更改ListView项,然后更新ListView?

时间:2012-08-09 15:45:05

标签: android listview

是否可以更改ListView项目(通过索引位置),然后有效地更新ListView

2 个答案:

答案 0 :(得分:0)

ListViewAdapter结合使用。

Adapter将更好地处理ListView内容的更新。

创建Adapter,然后将其设置在ListView

myListView.setAdapter(...);

Here is a tutorial that should help you.

答案 1 :(得分:0)

因为您在此处仅发布了任何类型的代码,仅作为示例建议您可以使用哪些方法和类:

ListAdapter a = myListView.getAdapter();
Object a = a.getItem(YOUR_POSITION);