I want to refresh an Android ListView after adding/deleting dynamic data.
Can any one tell me how to achieve this?
|
|
Call Some additional specifics on how/when to call notifyDataSetChanged() can be viewed in this Google I/O video. |
|||||||||||
|
|
Also you can use this:
enjoy! |
|||||
|
|
If you are using SimpleCursorAdapter try calling requery() on the Cursor object. |
|||||
|
|
i got some problems with dynamic refresh of my listview.
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
to acces the update() from my Activity. This update includes
to tell the Adapter to refresh the view. Worked fine as far as I can say. |
||||
|
|
|
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:
Not the perfect solution but it works. |
|||
|
|
|
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();
|
|||||||
|
|
After deleting data from list view, you have to call
and
|
||||
|
|