[ Web Proxy ]
URL:
Viewing: https://developer.android.com/reference/android/database/ContentObservable [Back]  [Original]

ContentObservable  |  API reference  |  Android Developers Skip to main content
Essentials Design & Plan Develop Google Play Blog
Search:
Android Studio
Android Developers [Android Developers]
Stay organized with collections Save and categorize content based on your preferences.

ContentObservable


public class ContentObservable
extends Observable<ContentObserver>

java.lang.Object
   ↳ android.database.Observable<android.database.ContentObserver>
     ↳ android.database.ContentObservable


A specialization of Observable for ContentObserver that provides methods for sending notifications to a list of ContentObserver objects.

Summary

Inherited fields

Public constructors

ContentObservable()

Public methods

void dispatchChange(boolean selfChange)

This method was deprecated in API level 16. Use dispatchChange(boolean,Uri) instead.

void dispatchChange(boolean selfChange, Uri uri)

Invokes ContentObserver.dispatchChange(boolean,Uri) on each observer.

void notifyChange(boolean selfChange)

This method was deprecated in API level 16. Use dispatchChange(boolean) instead.

void registerObserver(ContentObserver observer)

Adds an observer to the list.

Inherited methods

Public constructors

ContentObservable

public ContentObservable ()

Public methods

dispatchChange

Added in API level 1
Deprecated in API level 16
public void dispatchChange (boolean selfChange)

This method was deprecated in API level 16.
Use dispatchChange(boolean,Uri) instead.

Invokes ContentObserver.dispatchChange(boolean) on each observer.

If selfChange is true, only delivers the notification to the observer if it has indicated that it wants to receive self-change notifications by implementing ContentObserver.deliverSelfNotifications to return true.

Parameters
selfChange boolean: True if this is a self-change notification.

dispatchChange

Added in API level 16
public void dispatchChange (boolean selfChange, 
                Uri uri)

Invokes ContentObserver.dispatchChange(boolean,Uri) on each observer. Includes the changed content Uri when available.

If selfChange is true, only delivers the notification to the observer if it has indicated that it wants to receive self-change notifications by implementing ContentObserver.deliverSelfNotifications to return true.

Parameters
selfChange boolean: True if this is a self-change notification.

uri Uri: The Uri of the changed content, or null if unknown.

notifyChange

Added in API level 1
Deprecated in API level 16
public void notifyChange (boolean selfChange)

This method was deprecated in API level 16.
Use dispatchChange(boolean) instead.

Invokes ContentObserver.onChange on each observer.

Parameters
selfChange boolean: True if this is a self-change notification.

registerObserver

Added in API level 1
public void registerObserver (ContentObserver observer)

Adds an observer to the list. The observer cannot be null and it must not already be registered.

Parameters
observer ContentObserver: the observer to register

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 2026-08-03 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-08-03 UTC."],[],[]]

Web Proxy Viewer  |  New URL  |  Original Page