LiveData、MutableLiveData 的区别

Hai*_*ham 10 android android-studio android-livedata mutablelivedata

我知道MutableLiveDataextends LiveData,但它们之间有什么区别(在使用中)。什么是合适的用例,意味着什么时候从两者中使用正确的一个?

the*_*del 5

LiveData是不可变的,MutableLiveData而是可变的。MutableLiveData扩展LiveData并提供像setValue()和这样的方法postValue()

  • `LiveData` 也提供了 `setValue()` 和 `postValue()` 方法,但它们是受保护的,而不是公共的 (4认同)