to top
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 Cursors or Adapters. DataSetObserver must be implemented by objects which are added to a DataSetObservable.

Summary

Public Constructors

? Examples
DataSetObserver()
Public Methods

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

? Examples
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.

No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.