abstract class DataSetObserver

Receives call backs when a data set has been changed, or made invalid. The typically data sets that are observed are Cursors or android.widget.Adapters. DataSetObserver must be implemented by objects which are added to a DataSetObservable.

Summary

Public constructors
Public methods
open Unit

onChanged()

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

open Unit

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

Public constructors

DataSetObserver

DataSetObserver()

Public methods

onChanged

open fun onChanged(): Unit

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

onInvalidated

open fun onInvalidated(): Unit

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

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2025-02-10 UTC.