Reference:Android.database.DataSetObserver
From Triled Wiki
android.database
public abstract class android.database.DataSetObserver
| java.lang.Object | ||
| android.database.DataSetObserver | ||
Contents |
[edit] Known Direct Subclasses
[edit] Summary
[edit] Public Constructors
| DataSetObserver () |
[edit] Public Methods
| void | onChanged () | ||||
| This method is called when the entire data set has changed, most likely through a call to requery() on a Cursor. | |||||
| void | onInvalidated () | ||||
| This method is called when the entire data becomes invalid, most likely through a call to deactivate() or close() on a Cursor. | |||||
[edit] Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
[edit] Details
[edit] Public Constructors
[edit] public DataSetObserver()
[edit] Public Methods
[edit] public void onChanged()
This method is called when the entire data set has changed, most likely through a call to requery() on a Cursor.
[edit] public void onInvalidated()
This method is called when the entire data becomes invalid, most likely through a call to deactivate() or close() on a Cursor.
[edit] References
- Original documentation page for Android SDK build m5-rc15e - 14 apr 2008 17:27
