Reference:Android.database.DataSetObserver

From Triled Wiki

Jump to: navigation, search


android.database
public abstract class android.database.DataSetObserver

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 Cursor s or Adapter s. DataSetObserver must be implemented by objects which are added to a DataSetObservable.

Contents

[edit] Known Direct Subclasses

AdapterView.MyDataSetObserver

[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

Personal tools