DataSetObserver
public
abstract
class
DataSetObserver
extends Object
| java.lang.Object | |
| ↳ | android.database.DataSetObserver |
|
|
Receives call backs when a data set has been changed, or made invalid. The typically data sets
that are observed are Cursors or Adapters.
DataSetObserver must be implemented by objects which are added to a DataSetObservable.
Summary
Public constructors | |
|---|---|
DataSetObserver()
|
|
Public methods | |
|---|---|
void
|
onChanged()
This method is called when the entire data set has changed,
most likely through a call to |
void
|
onInvalidated()
This method is called when the entire data becomes invalid,
most likely through a call to |
Inherited methods | |
|---|---|
java.lang.Object
| |
Public constructors
Public methods
onChanged
void onChanged ()
This method is called when the entire data set has changed,
most likely through a call to requery() on a Cursor.
onInvalidated
void onInvalidated ()
This method is called when the entire data becomes invalid,
most likely through a call to deactivate() or close() on a
Cursor.
Interfaces
Classes
- AbstractCursor
- AbstractCursor.SelfContentObserver
- AbstractWindowedCursor
- CharArrayBuffer
- ContentObservable
- ContentObserver
- CrossProcessCursorWrapper
- CursorJoiner
- CursorWindow
- CursorWrapper
- DatabaseUtils
- DatabaseUtils.InsertHelper
- DataSetObservable
- DataSetObserver
- DefaultDatabaseErrorHandler
- MatrixCursor
- MatrixCursor.RowBuilder
- MergeCursor
- Observable
Enums
Exceptions

