Summary:
Methods
Observer
public
interface
Observer
| androidx.lifecycle.Observer<T> |
A simple callback that can receive from LiveData.
See also:
Summary
Public methods | |
|---|---|
abstract
void
|
onChanged(T t)
Called when the data is changed. |
Public methods
onChanged
public abstract void onChanged (T t)
Called when the data is changed.
| Parameters | |
|---|---|
t |
T: The new data
|