java.lang.Object | ||
↳ | android.database.Observable<T> | |
↳ | android.database.ContentObservable |
A specialization of Observable
for ContentObserver
that provides methods for sending notifications to a list of
ContentObserver
objects.
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.database.Observable
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Invokes
dispatchChange(boolean, Uri) on each observer. | |||||||||||
This method was deprecated
in API level 16.
Use
dispatchChange(boolean, Uri) instead.
| |||||||||||
This method was deprecated
in API level 16.
Use
dispatchChange(boolean) instead.
| |||||||||||
Adds an observer to the list.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.database.Observable
| |||||||||||
From class
java.lang.Object
|
Invokes 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 deliverSelfNotifications()
to return true.
selfChange | True if this is a self-change notification. |
---|---|
uri | The Uri of the changed content, or null if unknown. |
This method was deprecated
in API level 16.
Use dispatchChange(boolean, Uri)
instead.
Invokes 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 deliverSelfNotifications()
to return true.
selfChange | True if this is a self-change notification. |
---|
This method was deprecated
in API level 16.
Use dispatchChange(boolean)
instead.
Invokes onChange(boolean)
on each observer.
selfChange | True if this is a self-change notification. |
---|
Adds an observer to the list. The observer cannot be null and it must not already be registered.
observer | the observer to register |
---|