Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public abstract class

DataSetObserver

extends Object
java.lang.Object
   ↳ android.database.DataSetObserver
Known Direct Subclasses

Class Overview

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.

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 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 .
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public DataSetObserver ()

Added in API level 1

Public Methods

public void onChanged ()

Added in API level 1

This method is called when the entire data set has changed, most likely through a call to requery() on a Cursor .

public void onInvalidated ()

Added in API level 1

This method is called when the entire data becomes invalid, most likely through a call to deactivate() or close() on a Cursor .