美文网首页
MVVM —— setValue和postValue

MVVM —— setValue和postValue

作者: ProgrammingGuy | 来源:发表于2019-11-01 11:07 被阅读0次

LiveData有两个设置函数:setValue and postValue。它们的区别是:
setValue只可以在主线程中调用。postValue可以在主线程或者子线程中调用,但是数据只会由主线程执行更新,如果调用多次postValue更新数据,则在主线程执行更新前,LiveDatavalue只会保存最后一次的post值。

相关文章

网友评论

      本文标题:MVVM —— setValue和postValue

      本文链接:https://www.haomeiwen.com/subject/wrrfbctx.html