android.widget.ListAdapter |
Known Indirect Subclasses |
Extended Adapter
that is the bridge between a ListView
and the data that backs the list. Frequently that data comes from a Cursor,
but that is not
required. The ListView can display any data provided that it is wrapped in a
ListAdapter.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.widget.Adapter
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Are all items in this ListAdapter enabled?
If yes it means all items are selectable and clickable.
| |||||||||||
Returns true if the item at the specified position is not a separator.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.widget.Adapter
|
Are all items in this ListAdapter enabled? If yes it means all items are selectable and clickable.
Returns true if the item at the specified position is not a separator.
(A separator is a non-selectable, non-clickable item).
The result is unspecified if position is invalid. An ArrayIndexOutOfBoundsException
should be thrown in that case for fast failure.
position | Index of the item |
---|