- Observable - Interface in android.databinding
-
Observable classes provide a way in which data bound UI can be notified of changes.
- Observable.OnPropertyChangedCallback - Class in android.databinding
-
The callback that is called by Observable when an observable property has changed.
- ObservableList<T> - Interface in android.databinding
-
A List
that notifies when changes are made.
- ObservableList.OnListChangedCallback<T extends ObservableList> - Class in android.databinding
-
The callback that is called by ObservableList when the list has changed.
- ObservableMap<K,V> - Interface in android.databinding
-
A Map
that notifies when items change.
- ObservableMap.OnMapChangedCallback<T extends ObservableMap<K,V>,K,V> - Class in android.databinding
-
A callback receiving notifications when an ObservableMap changes.
- onChange() - Method in interface android.databinding.InverseBindingListener
-
Notifies the data binding system that the attribute value has changed.
- onChanged(T) - Method in class android.databinding.ObservableList.OnListChangedCallback
-
Called whenever a change of unknown type has occurred, such as the entire list being
set to new values.
- onItemRangeChanged(T, int, int) - Method in class android.databinding.ObservableList.OnListChangedCallback
-
Called whenever one or more items in the list have changed.
- onItemRangeInserted(T, int, int) - Method in class android.databinding.ObservableList.OnListChangedCallback
-
Called whenever items have been inserted into the list.
- onItemRangeMoved(T, int, int, int) - Method in class android.databinding.ObservableList.OnListChangedCallback
-
Called whenever items in the list have been moved.
- onItemRangeRemoved(T, int, int) - Method in class android.databinding.ObservableList.OnListChangedCallback
-
Called whenever items in the list have been deleted.
- OnListChangedCallback() - Constructor for class android.databinding.ObservableList.OnListChangedCallback
-
- onMapChanged(T, K) - Method in class android.databinding.ObservableMap.OnMapChangedCallback
-
Called whenever an ObservableMap changes, including values inserted, deleted,
and changed.
- OnMapChangedCallback() - Constructor for class android.databinding.ObservableMap.OnMapChangedCallback
-
- onNotifyCallback(C, T, int, A) - Method in class android.databinding.CallbackRegistry.NotifierCallback
-
- onPropertyChanged(Observable, int) - Method in class android.databinding.Observable.OnPropertyChangedCallback
-
Called by an Observable whenever an observable property changes.
- OnPropertyChangedCallback() - Constructor for class android.databinding.Observable.OnPropertyChangedCallback
-