Package android.database
Class DataSetObserver
- java.lang.Object
-
- android.database.DataSetObserver
-
-
Constructor Summary
Constructors Constructor Description DataSetObserver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonChanged()This method is called when the entire data set has changed, most likely through a call toCursor.requery()on aCursor.voidonInvalidated()This method is called when the entire data becomes invalid, most likely through a call toCursor.deactivate()orCursor.close()on aCursor.
-
-
-
Method Detail
-
onChanged
public void onChanged()
This method is called when the entire data set has changed, most likely through a call toCursor.requery()on aCursor.
-
onInvalidated
public void onInvalidated()
This method is called when the entire data becomes invalid, most likely through a call toCursor.deactivate()orCursor.close()on aCursor.
-
-