Có hai cách tạo ra giá trị thay đổi của MutableLiveData
. Nhưng sự khác biệt giữa setValue()
& postValue()
trong là gì MutableLiveData
.
Tôi không thể tìm thấy tài liệu cho giống nhau.
Đây là lớp MutableLiveData
của Android.
package android.arch.lifecycle;
/**
* {@link LiveData} which publicly exposes {@link #setValue(T)} and {@link #postValue(T)} method.
*
* @param <T> The type of data hold by this instance
*/
@SuppressWarnings("WeakerAccess")
public class MutableLiveData<T> extends LiveData<T> {
@Override
public void postValue(T value) {
super.postValue(value);
}
@Override
public void setValue(T value) {
super.setValue(value);
}
}