| java.lang.Object | ||
| ↳ | android.databinding.CallbackRegistry<android.databinding.ObservableList.OnListChangedCallback, android.databinding.ObservableList, android.databinding.ListChangeRegistry.ListChanges> | |
| ↳ | android.databinding.ListChangeRegistry | |
Utility class for managing ObservableList callbacks.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Notify all callbacks.
| |||||||||||
Notify registered callbacks that some elements have changed.
| |||||||||||
Notify registered callbacks that there was an unknown or whole-list change.
| |||||||||||
Notify registered callbacks that elements were inserted.
| |||||||||||
Notify registered callbacks that elements were moved.
| |||||||||||
Notify registered callbacks that elements were deleted.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.databinding.CallbackRegistry
| |||||||||||
From class
java.lang.Object
| |||||||||||
Notify all callbacks.
| sender | The originator. This is an opaque parameter passed to
onNotifyCallback(Object, Object, int, Object) |
|---|---|
| notificationType | An opaque parameter passed to
onNotifyCallback(Object, Object, int, Object) |
| listChanges | An opaque parameter passed to
onNotifyCallback(Object, Object, int, Object)
|
Notify registered callbacks that some elements have changed.
| list | The list that changed. |
|---|---|
| start | The index of the first changed element. |
| count | The number of changed elements. |
Notify registered callbacks that there was an unknown or whole-list change.
| list | The list that changed. |
|---|
Notify registered callbacks that elements were inserted.
| list | The list that changed. |
|---|---|
| start | The index where the elements were inserted. |
| count | The number of elements that were inserted. |
Notify registered callbacks that elements were moved.
| list | The list that changed. |
|---|---|
| from | The index of the first element moved. |
| to | The index of where the element was moved to. |
| count | The number of elements moved. |
Notify registered callbacks that elements were deleted.
| list | The list that changed. |
|---|---|
| start | The index of the first element to be removed. |
| count | The number of elements removed. |