如何在Android中的ArrayAdapter上更新ArrayList中的项目

时间:2014-12-07 16:28:51

标签: android arraylist android-listview android-arrayadapter

我是开发Android的新手。我有一个ListView和自定义ArrayAdapter,它包含一个arraylist。我想按位置更新arraylist特定项目。如何处理请提前帮助我。

1 个答案:

答案 0 :(得分:5)

假设您的适配器正在存储ListFoo个对象。

Foo item = mAdapter.getItem(position);
item.setValue("blah");  //Or whatever you need to update
mAdapter.notifyDataSetChanged();