This question already has answers here:
Why there's a separate MutableLiveData subclass of LiveData?

(3个答案)


2年前关闭。




我知道MutableLiveData扩展了LiveData
但是它们之间(在用法上)有什么区别。什么是适当的用例,意味着什么时候应使用两种中正确的一种?

最佳答案

LiveData是可变的,而MutableLiveData是可变的。 MutableLiveData扩展了LiveData并提供了诸如setValue()postValue()之类的方法。

10-08 07:38