What is the difference between ListView and ArrayList and what should i choose when i develop Chatting Activity using SMS ?
ArrayList <Message> and ListView
What is the difference between ListView and ArrayList and what should i choose when
Share
An
ArrayListis a general-purpose a data structure. It is not Android-specific. It looks something like this:A
ListViewis an Android-only UI widget for displaying lists of things. It looks something like this:In summary: RTFD.