Could you please tell me difference between ArrayAdapter
, BaseAdapter
and ListAdapter
.
ListAdapter
It is an interface that extended Adapter which is the bridge between a ListView and the data that backs the list.
BaseAdaper
Common base class of common implementation for an Adapter that can be used in both ListView (by implementing the specialized ListAdapter interface} and Spinner (by implementing the specialized SpinnerAdapter interface.
ArrayAdapter
A concrete BaseAdapter that is backed by an array of arbitrary objects.
Refer below links
ListAdapter
BaseAdapter
ArrayAdapter