List View
List View
LIST VIEW
UI Overview
A View is an object that draws something on the screen that the user can interact with. A View Group is an object that holds other View (and ViewGroup) objects in order to define the layout of the interface. LinearLayout and RelativeLayout are typical examples
Data Adapters
Android framework for providing linking mechanism between raw data and view objects
AdapterView Class
A subclass of ViewGroup whose child Views are determined by an Adapter Gallery, ListView, and Spinner are examples of AdapterView
ListActivity
ListActivity class can be used if your activity only holds ListView. It does not require assignment to a layout via the setContentView() method
ListView Demo