up vote 6 down vote favorite
4
share [g+] share [fb]

i want to know how to refresh the ListActivity when i change/add data to the list wich is dispayed.

i first thougt the ListAdapter would know when the list is changed but when i add elements to the list there is no update, only when i close the activity and reopen it i see the changes. so i searched for any update() refesh() or something like that method but there is none. so it seem i didnt get the concept, can someone help me please?

link|improve this question

feedback

3 Answers

up vote 14 down vote accepted

If you are using an ArrayAdapter, manipulate the contents of the list through the adapter -- do not touch the underlying list. There are add(), insert(), and remove() methods on ArrayAdapter.

If you are using a CursorAdapter, run a requery() on the Cursor.

link|improve this answer
ok thanks no i understand how it works – Sponge Oct 10 '09 at 16:55
I use ArrayAdapter and I update record. How can I refresh ListView? – Murat Corlu Aug 18 '11 at 2:36
feedback

Try ArrayAdapter:notifyDataSetChanged
Google docs link

link|improve this answer
Just a note, that doesn't work if there isn't any observers to attached to adapter. – Waltsu Jan 5 at 7:34
feedback

maybe you should do this setListAdapter(listAdapter);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.