ViewModel中有MutableLiveData>。我们如何根据书名、id等对其进行排序。
您可以使用map
函数来转换LiveData
。
val unsortedBooks: LiveData<Book> = //...
val sortedBooks: LiveData<Book> = Transformations
.map(unsortedBooks, Function { books ->
//sort your `books` here and return the sorted list
})