Android List view refresh

You have to notify your ListView adapter that the data has changed.

listViewAdapater.notifyDataSetChanged();

If that for some reason doesn’t work and there are some wierd situations where it seems like it wasn’t notifying, you can just reassign your adapter via the constructor with the updated array.

Leave a Comment