This question already has answers here:
Why there's a separate MutableLiveData subclass of LiveData?
(3个答案)
2年前关闭。
我知道
但是它们之间(在用法上)有什么区别。什么是适当的用例,意味着什么时候应使用两种中正确的一种?
(3个答案)
2年前关闭。
我知道
MutableLiveData
扩展了LiveData
,但是它们之间(在用法上)有什么区别。什么是适当的用例,意味着什么时候应使用两种中正确的一种?
最佳答案
LiveData
是可变的,而MutableLiveData
是可变的。 MutableLiveData
扩展了LiveData
并提供了诸如setValue()
和postValue()
之类的方法。
10-08 07:38