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
use ArrayList instead of Array[], you don't need to initialize size for ArrayList so it is more flexible than Array[]. and it will automatically scale up or down if you add or delete items inside
ArrayList
Array[]
add
delete