I have a small question, what is the difference between a ListActivity and a ListView ?
I have a small question, what is the difference between a ListActivity and a ListView ?
First I advise you to study the difference between Activity
and View
, because they are absolutely different things. After that you will realize that ListView
is a type of implementation of View
, more specifically ViewGroup
, which allows you to display views as a list.
ListActivity
is Activity
normal, but already has mechanisms to make it easier to use lists like ListView
.
Access the ListView documentation and ListActivity for more details.