I have an array of contacts that I am constantly updating. I want my ListView to update with my contacts.
ListView
Should I use an Adapter for that? I
Adapter
so, You have to notify your ListView adapter that the data has changed.
listViewAdapater.notifyDataSetChanged();
hope, this would work