Android Jetpack:设置LiveData时,RecyclerView不会更新

时间:2018-06-10 00:52:59

标签: android android-recyclerview kotlin android-jetpack android-livedata

所以我有一个简单的实现来显示RecyclerView中的用户列表,并在ViewModel中以LiveData的形式查询列表。

问题是UI未更新以显示最新列表 - 名为users - 即使在观察列表时也是如此。我现在只是设置一个演示用户列表。

这是我的ViewModel:

class MainViewModel : ViewModel() {

    private val demoData = listOf(
            User(userName = "Bob", favoriteColor = "Green"),
            User(userName = "Jim", favoriteColor = "Red"),
            User(userName = "Park", favoriteColor = "Blue"),
            User(userName = "Tom", favoriteColor = "Yellow"),
            User(userName = "Lee", favoriteColor = "Black"),
            User(userName = "Xiu", favoriteColor = "Gray")
    )

    private val _users = MutableLiveData<List<User>>()
    val users: LiveData<List<User>>
        get() = _users

    init {
        _users.value = listOf()
    }

    fun loadUsers() {
        _users.value = demoData.toMutableList().apply { shuffle() }
    }
}

我的ViewModel附加片段:

// ...

override fun onActivityCreated(savedInstanceState: Bundle?) {
    super.onActivityCreated(savedInstanceState)
    viewModel = ViewModelProviders.of(this).get(MainViewModel::class.java)

    viewModel.users.observe(this, Observer {
        mAdapter.notifyDataSetChanged()
    })

    mAdapter = UsersAdapter(viewModel.users.value!!)

    mainRV = view?.findViewById<RecyclerView>(R.id.rv_main)?.apply {
        adapter = mAdapter
        layoutManager = LinearLayoutManager(view?.context)
    }

    viewModel.loadUsers()
}

P.S。 UsersAdapter通常为RecyclerView.Adapter

我确保在我的用户列表上调用setValue来调用Observer,因此我不确定这里缺少什么。我的适配器设置错误吗?

1 个答案:

答案 0 :(得分:1)

fun loadUsers() {
    _users.value = demoData.toMutableList().apply { shuffle() }
}

toMutableList()创建一个包含数据的新列表,请参阅源代码:

public fun <T> Collection<T>.toMutableList(): MutableList<T> {
    return ArrayList(this)
}

因此,您应该更新适配器中的列表并显示该适配器,而不是获取初始值并且永远不会更新适配器。

viewModel.users.observe(this, Observer { users ->
    mAdapter.updateData(users)
})

如果您不是using ListAdapter,那么您可以像这样定义此方法:

class MyAdapter: RecyclerView.Adapter<ViewHolder>(
   private var list: List<User> = Collections.emptyList()
) {
    ...

    fun updateData(users: List<User>) {
        this.users = users
        notifyDataSetChanged()
    }
}

你也可以使用ListAdapter and submitList,你也可以获得动画。