We can populate an AdapterView such as Listview or GridView by binding the AdapterView instance to an Adapter. At this example, We will learn to implement simple list using a ListView and BaseAdapter basically. The steps to implement ListView are the following. 1. Define the XML Layout to display data in the view. 2. Define Java beans Class to save data. 3. Define the view group so that Listview..