Android开发中,MutableLiveData是一个用于管理可观察型数据的类,它是LiveData的一个子类,可以用来传递数据给UI层。
要给MutableLiveData赋值,你需要调用它的setValue(T)方法或者postValue(T)方法。
1、声明代码:
class HomeViewModel : ViewModel() {
private val _text = MutableLiveData<String>().apply {
value = "This is home Fragment"
}
val text: LiveData<String> = _text
fun setText(value: String) {
_text.value = value;
}
fun postText(value:String){
_text.postValue(value);
}
}
2、调用方法:
val homeViewModel =
ViewModelProvider(this).get(HomeViewModel::class.java)
homeViewModel.setText("hello,world")
homeViewModel.postText("hello")
创建ViewModel提供程序。这将创建ViewModel并将其保留在给定ViewModel StoreOwner的存储中,这样我们就可以用homeViewModel来调用方法了。
说明:
setValue应该只在主线程中使用,而postValue可以在任何线程中使用。在实际应用中,如果你需要在后台线程中更新数据,你应该使用postValue。