3

I am new at developing Android.I have a ListView and custom ArrayAdapter which holds an arraylist.I want to update arraylist specific item by position.How can I handle please help me thanks in advance.

1 Answer 1

6

Assuming your adapter is storing a List of Foo objects.

Foo item = mAdapter.getItem(position);
item.setValue("blah");  //Or whatever you need to update
mAdapter.notifyDataSetChanged();
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.