java.lang.Object | |
↳ | android.widget.BaseAdapter |
Known Direct Subclasses |
Known Indirect Subclasses |
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.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.widget.Adapter
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Are all items in this ListAdapter enabled?
If yes it means all items are selectable and clickable.
| |||||||||||
Get a View that displays in the drop down popup the data at the specified position in the data set. | |||||||||||
Get the type of View that will be created by getView(int, View, ViewGroup) for the specified item.
| |||||||||||
Returns the number of types of Views that will be created by getView(int, View, ViewGroup). | |||||||||||
Indicated whether the item ids are stable across changes to the
underlying data.
| |||||||||||
Returns true if the item at the specified position is not a separator.
| |||||||||||
Notifies the attached View that the underlying data has been changed
and it should refresh itself.
| |||||||||||
Register an observer that is called when changes happen to the data used by this adapter.
| |||||||||||
Unregister an observer that has previously been registered with this
adapter via registerDataSetObserver(DataSetObserver).
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class java.lang.Object
| |||||||||||
From interface android.widget.Adapter
| |||||||||||
From interface android.widget.ListAdapter
| |||||||||||
From interface android.widget.SpinnerAdapter
|
Are all items in this ListAdapter enabled? If yes it means all items are selectable and clickable.
Get a View that displays in the drop down popup the data at the specified position in the data set.
position | index of the item whose view we want. |
---|---|
convertView | the old view to reuse, if possible. Note: You should check that this view is non-null and of an appropriate type before using. If it is not possible to convert this view to display the correct data, this method can create a new view. |
parent | the parent that this view will eventually be attached to |
Get the type of View that will be created by getView(int, View, ViewGroup) for the specified item.
position | The position of the item within the adapter's data set whose view type we want. |
---|
Returns the number of types of Views that will be created by getView(int, View, ViewGroup). Each type represents a set of views that can be converted in getView(int, View, ViewGroup). If the adapter always returns the same type of View for all items, this method should return 1.
This method will only be called when when the adapter is set on the the AdapterView.
Indicated whether the item ids are stable across changes to the underlying data.
Returns true if the item at the specified position is not a separator. (A separator is a non-selectable, non-clickable item).
position | Index of the item |
---|
Notifies the attached View that the underlying data has been changed and it should refresh itself.
Register an observer that is called when changes happen to the data used by this adapter.
observer | the object that gets notified when the data set changes. |
---|
Unregister an observer that has previously been registered with this adapter via registerDataSetObserver(DataSetObserver).
observer | the object to unregister. |
---|