How to refresh Android listview?

UMAR-MOBITSOLUTIONS picture UMAR-MOBITSOLUTIONS · Feb 12, 2010 · Viewed 504.4k times · Source

How to refresh an Android ListView after adding/deleting dynamic data?

Answer

Christopher Orr picture Christopher Orr · Feb 12, 2010

Call notifyDataSetChanged() on your Adapter object once you've modified the data in that adapter.

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