Android Adapters are useful for retrieving different kinds of data and building views for an AdapterView such as ListView or GridView.
The common adapters are
- BaseAdapter – It is parent adapter
- ArrayAdapter – It is used when we have a list of single items
- Custom ArrayAdapter – It is used whenever we need to display a custom list
- SimpleAdapter – It is an easy adapter to map static data to views defined in your XML file
- Custom SimpleAdapter – It is used whenever we need to display a customized list and needed to access the child items of the list or grid
Post a Comment