Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以更改ListView项目(通过索引位置)然后ListView有效地更新?
ListView
将 a与 aListView结合使用Adapter。
Adapter
将Adapter更好地处理ListView内容的更新。
创建一个Adapter然后将其设置在您的ListView.
myListView.setAdapter(...);
这是一个应该可以帮助您的教程。
因为您在这里没有发布任何代码,仅作为示例来建议您可以使用哪些方法和类:
ListAdapter a = myListView.getAdapter(); Object a = a.getItem(YOUR_POSITION);