Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to refresh an Android ListView after adding/deleting dynamic data.

Can any one tell me how to achieve this?

share|improve this question
2  
If other solutions don't work, try refreshDrawableState. Props to stackoverflow.com/questions/5186359/… – Edwin Evans May 5 '12 at 22:33

7 Answers

up vote 108 down vote accepted

Call notifyDataSetChanged() on your Adapter.

Some additional specifics on how/when to call notifyDataSetChanged() can be viewed in this Google I/O video.

share|improve this answer
15  
notifyDataSetChanged() does NOT work! – Anderson Dec 18 '12 at 0:06
1  
You should run it on the UI thread. Create an handler within the UI thread and then post Runable to it – Kirill Kulakov Feb 22 at 15:58
When running it on the UI Thread it works for me. – Zainodis Apr 17 at 6:26

Also you can use this:

myListView.invalidateViews();

enjoy!

share|improve this answer
2  
+1 Thanks u r answer work for me. – parag Mar 29 '12 at 9:40

If you are using SimpleCursorAdapter try calling requery() on the Cursor object.

share|improve this answer
6  
This method is deprecated. – AndroidGecko Feb 24 '12 at 12:18

i got some problems with dynamic refresh of my listview.

Call notifyDataSetChanged() on your Adapter.

Some additional specifics on how/when to call notifyDataSetChanged() can be viewed in this Google I/O video.

notifyDataSetChanged() did not work properly in my case[ I called the notifyDataSetChanged from another class]. Just in the case i edited the ListView in the running Activity (Thread). That video thanks to Christopher gave the final hint.

In my second class i used

Runnable run = new Runnable(){
     public void run(){
         contactsActivity.update();
     }
};
contactsActivity.runOnUiThread(run);

to acces the update() from my Activity. This update includes

myAdapter.notifyDataSetChanged();

to tell the Adapter to refresh the view. Worked fine as far as I can say.

share|improve this answer

I found a quick work around if anyone is having serious issues with this. I had spent a few hours myself with the solutions given here with no avail so heres how I fixed it:

    Intent refresh =new Intent(this, DisplayResults.class);

    startActivity(refresh);

    this.finish();

Not the perfect solution but it works.

share|improve this answer

if you are not still satisfied with ListView Refreshment, you can look at this snippet,this is for loading the listView from DB, Actually what you have to do is simply reload the ListView,after you perform any CRUD Operation Its not a best way to code, but it will refresh the ListView as you wish..

It works for Me....if u find better solution,please Share...

.......
......
do your CRUD Operations..
......
.....
DBAdapter.open();
DBAdapter.insert_into_SingleList();
// Bring that DB_results and add it to list as its contents....
                                            ls2.setAdapter(new ArrayAdapter(DynTABSample.this,
    android.R.layout.simple_list_item_1,                        DBAdapter.DB_ListView));
                                            DBAdapter.close();
share|improve this answer
1  
I found a better solution! It's right above yours. – Elijah Saounkine Oct 13 '10 at 13:16
HI Umma, if possible, please let me know....your style ..Thanks – Nandagopal T Oct 14 '10 at 8:01

After deleting data from list view, you have to call refreshDrawableState(). Here is the example:

final DatabaseHelper db = new DatabaseHelper (ActivityName.this);

db.open();

db.deleteContact(arg3);

mListView.refreshDrawableState();

db.close();

and deleteContact method in DatabaseHelper class will be somewhat looks like

public boolean deleteContact(long rowId) {

   return db.delete(TABLE_NAME, BaseColumns._ID + "=" + rowId, null) > 0;

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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