Android MVVM 2 ViewModels 与 LiveData 共享 1 个存储库

Android MVVM 2 ViewModels Sharing 1 Repository with LiveData

我对存储库的 MVVM 模式有疑问。

//FragmentA Observes viewModelA
viewModelA.cartContent.observe(viewLifecycleOwner, Observer { content ->

})
// ViewModelA exposes cartContent
val cartContent: LiveData<MutableList<Item>> = repository.getContent()
// Repository
private val contentRepository = mutableListOf<Item>()
fun getContent() : LiveData<MutableList<Item>> {
  val data = MutableLiveData<MutableList<Item>>()
  data.value = contentRepository
  return data
}
.
.
.

现在,两个 viewModel 都在对保留 MutableList 的存储库进行更改。我想知道是否可以观察另一个 viewModel 对存储库所做的更改。如果是,怎么做?

为了更清楚,我希望 viewModelA 知道 viewModelB 何时修改存储库中的列表。 viewModelA 可以观察存储库中的数据,以便当 viewModelB 修改它时,它也会传播到 viewModelA 吗?

我不想使用共享的 viewModel。我也更愿意通过观察 LiveData 而不是使用 interfaces

来解决它

谢谢

// Repository
private val contentRepository = MutableLiveData<List<Item>>(Collections.emptyList())
fun getContent() : LiveData<List<Item>> = contentRepository

fun addContent(item: Item) {
    val list = ArrayList(contentRepository.value!!)
    list.add(item)
    contentRepository.value = Collections.unmodifiableList(list)
}

fun setContent(items: List<Item>) {
    contentRepository.value = Collections.unmodifiableList(ArrayList(items))
}

val cartContent: LiveData<List<Item>> = repository.getContent()

import androidx.lifecycle.observe

//FragmentA Observes viewModelA
viewModelA.cartContent.observe(viewLifecycleOwner) { content ->

}