Android Data Binding : Observable List to RecyclerView's Adapter

邮差的信 提交于 2019-11-29 06:09:28

问题


Is their a way, by using the ObservableList class from the new Data Binding library and the MVVM pattern, to avoid using "notifyItem(s)..." methods from the Adapter class?

Or if not what could be the simpliest way to bind an ObservableList to a RecyclerView?

Thank's for any clue !


回答1:


Have a look at following implementation of the RecyclerView's adapter:

https://github.com/radzio/android-data-binding-recyclerview/blob/master/recyclerview-binding/src/main/java/net/droidlabs/mvvm/recyclerview/adapter/BindingRecyclerViewAdapter.java

It automatically notifies the recycler view if the OnListChangedCallback is called.

Also have a look at the rest of the repository. It shows how to bind your ObervableList to the adapter using xml. So that you can have something like this:

app:items="@{usersViewModel.users}"


来源:https://stackoverflow.com/questions/34019978/android-data-binding-observable-list-to-recyclerviews-adapter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!