Difference between ListView and ListActivity

4

I have a small question, what is the difference between a ListActivity and a ListView ?     

asked by anonymous 02.12.2015 / 01:45

1 answer

8

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.

    
02.12.2015 / 02:43