我将Kotlin版本更新为1.2.31并收到以下警告。
Do not explicitly call 'get()' on ObservableFields or 'getValue()'
on LiveData in an expression. This support will be removed soon.
现在我应该使用什么功能?
答案 0 :(得分:1)
我认为您应该始终将observe用于LiveData,将addOnPropertyChangedCallback用于ObservableFields,因为get
和getValue
不是线程安全的。