Android Adapters
Android provides several sub classes of Adapter that are useful for retrieving different kinds of data and building views for an Adapter View . The two most common adapters are: 1. Array Adapter 2. Simple Customer Adapter Array Adapter ArrayAdapter adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, myStringArray); The arguments for this […]