tags:

views:

53

answers:

2

In Android, what functionality do ListActivity and ListView provide beyond a regular Activity and View?

A: 

ListActivity hosts a ListView object that can be bound to different data sources.

In short:

If your Activity will have a ListView check ListActivity. It might help you a little.

Macarse
A: 

A ListActivity provides some convenience methods for using a ListView inside of the Activity. The best example would be that it is very easy to attach a data source (ArrayList or Cursor to a Database) to the ListView and have it be displayed to the user. The ListView can also be made clickable.

smith324