public static class PseudoGridView.ViewGroupAdapterBridge extends DataSetObserver
Usage: ViewGroupAdapterBridge.link(viewGroup, adapter)
After this call, the ViewGroup's children will be provided by the adapter.
Modifier and Type | Method and Description |
---|---|
static void |
link(ViewGroup viewGroup,
BaseAdapter adapter) |
void |
onChanged()
This method is called when the entire data set has changed,
most likely through a call to
Cursor.requery() on a Cursor . |
void |
onInvalidated()
This method is called when the entire data becomes invalid,
most likely through a call to
Cursor.deactivate() or Cursor.close() on a
Cursor . |
public static void link(ViewGroup viewGroup, BaseAdapter adapter)
public void onChanged()
DataSetObserver
Cursor.requery()
on a Cursor
.onChanged
in class DataSetObserver
public void onInvalidated()
DataSetObserver
Cursor.deactivate()
or Cursor.close()
on a
Cursor
.onInvalidated
in class DataSetObserver