Make one of the views resulting from newView
display a particular
item
.
Make one of the views resulting from newView
display a particular
item
. The default implementation uses the
UiBinder object passed in as a constructor
argument, for which the default is the UiBinder
singleton.
If the view
is a TextView
, and no other arrangements have been
made, this will effectively do view.setText(item.toString)
. See
the documentation on UiBinder for how to
easily make it do something smarter (e.g., loading views with the
values of properties named by their resource IDs).
Get number of items in the current sequence
Get number of items in the current sequence
Get the n'th item from the current sequence
Get the n'th item from the current sequence
Get the id of the n'th item from the current sequence
Get the id of the n'th item from the current sequence
Get a view to use for the given position.
Get a view to use for the given position. Ordinarily delegates to the
newView
and bindView
methods, q.v.
Create a new view to display items (if our AdapterView
's pool has
no spares).
Create a new view to display items (if our AdapterView
's pool has
no spares).
If it's not overridden, and if an itemViewResourceId
was supplied
to the constructor, the default implementation will use a layout
inflater to inflate that resource, and return the result.
Method to reset the sequence if a new copy was (or might have been) loaded off the UI thread.
Method to reset the sequence if a new copy was (or might have been) loaded off the UI thread.
Adapter for Notifiers which manage (and report changes to) Scala
IndexedSeq
s.Like IndexedSeqAdapter, except that it wires itself up to automatically be notified of changes within the lifetime of the given
activity
.