3

情况如下:

我有RecyclerView一个Fragmentusing DataBinding。它的适配器是一个ListAdapter.

class MyFragment : Fragment() {
    override fun onCreateView(...) {
        val binding = // inflate layout with DataBindingUtil

        val myListAdapter = MyListAdapter()
        binding.recyclerView.adapter = myListAdapter

        val myViewModel: MyViewModel by activityViewModels()
        myViewModel.myLiveData.observe(viewLifecycleOwner, Observer {
            println("before submit: ${myListAdapter.currentList}")
            myListAdapter.submitList(it)
            println("after submit: ${myListAdapter.currentList}")
        })

        return binding.root
    }
}

要显示的数据由 表示List<Double>。设置后,列表用于初始化 a MutableLiveData,如下所示:

class MyViewModel : ViewModel() {
    val data = listOf<Double>(/* init with some values */)
    val myLiveData = MutableLiveData(data)

    fun onButtonClicked() {
        update()
        println(myLiveData.value) // LiveData is correctly updated according to data
    }
}

注意:该update()方法会更改列表的值,例如:data[0] = someValue. 它不使用clear()也不addAll()更新它。

  • 另外,ListAdapter.onCurrentListChanged()为了把println()里面放进去覆盖。

在这一点上,没有什么特别的。创建片段时,会RecyclerView显示初始列表。在 Logcat 中:

I/System.out: before submit: []
I/System.out: onCurrentListChanged: [] -> [4.07, 6.29, 13.85, 17.92, 21.42, 23.47, 1.85]
I/System.out: after submit: [4.07, 6.29, 13.85, 17.92, 21.42, 23.47, 1.85]

现在,当我单击按钮时,UI 不会刷新,因为我没有分配新列表,而只是更新当前列表。此外,如果我导航到另一个片段然后返回,RecyclerView 则会显示更新的值。

所以我在末尾添加以下内容onButtonClicked()

myLiveData.value = myLiveData.value

但这不起作用,单击按钮后 UI 仍未自动更新。此外,Logcat 只打印 'before submit' 和 'after submit',具有相同的ListAdapter.currentList值:

I/System.out: before submit: [4.88, 6.77, 13.85, 17.76, 20.93, 22.69, 1.85]
I/System.out: after submit: [4.88, 6.77, 13.85, 17.76, 20.93, 22.69, 1.85]

对我来说,打印应该看起来像这样:

I/System.out: before submit: [4.07, 6.29, 13.85, 17.92, 21.42, 23.47, 1.85]
I/System.out: onCurrentListChanged: [4.07, 6.29, 13.85, 17.92, 21.42, 23.47, 1.85] -> [4.88, 6.77, 13.85, 17.76, 20.93, 22.69, 1.85]
I/System.out: after submit: [4.88, 6.77, 13.85, 17.76, 20.93, 22.69, 1.85]

似乎ListAdapter.currentList甚至在调用之前就已经有了更新的值submitList()。我想这就是为什么RecyclerView不刷新的原因,因为提交的列表与当前列表相同。
最后我还尝试了以下操作,但onButtonClicked()没有成功:

//myLiveData.value = myLiveData.value
myLiveData.value = emptyList()
myLiveData.value = data

和这个...

//myLiveData.value = myLiveData.value
myLiveData.value = emptyList()
//myLiveData.value = data

...给了我:

I/System.out: before submit: [4.88, 6.77, 13.85, 17.76, 20.93, 22.69, 1.85]
I/System.out: after submit: [4.88, 6.77, 13.85, 17.76, 20.93, 22.69, 1.85]
I/System.out: onCurrentListChanged: [4.88, 6.77, 13.85, 17.76, 20.93, 22.69, 1.85] -> []

现在onCurrentListChanged()被调用,但在 2 个打印的末尾而不是在中间。
此外,ListAdapter.currentList似乎在“提交后”打印中包含值,但在onCurrentListChanged()打印中实际上是空的。令人困惑...

我发现进行RecyclerView刷新的唯一方法是调用notifyDataSetChanged(). 但是,使用ListAdapter及其submitList()方法没有任何好处。

作为一个新手,我可能做了一些不正确的事情,但我不知道是什么。
问题仅在于 UI 不刷新。我可以在 Locgcat 中看到数据正在正确更新。

提前致谢

编辑

class MyListAdapter() : ListAdapter<Double, MyViewHolder>(MyDiffCallBack()) {

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) =
        MyViewHolder.from(parent, itemCount)

    override fun onBindViewHolder(holder: MyViewHolder, position: Int) =
        holder.bind(getItem(position))

    override fun onCurrentListChanged(previousList: MutableList<Double>, currentList: MutableList<Double>) {
        super.onCurrentListChanged(previousList, currentList)
        println("onCurrentListChanged: $previousList -> $currentList")
    }
}

class MyViewHolder private constructor(private val binding: MyItemViewBinding) : RecyclerView.ViewHolder(binding.root) {

    fun bind(data: Double) {
        binding.dataTxt.text = data.toString()
    }

    companion object {
        fun from(parent: ViewGroup, itemCount: Int): MyViewHolder {
            val binding = // inflate layout
            binding.root.layoutParams.height = parent.height / itemCount // set the height proportionally
            return MyViewHolder(binding)
        }
    }
}

class MyDiffCallBack : DiffUtil.ItemCallback<Double>() {
    override fun areItemsTheSame(oldItem: Double, newItem: Double): Boolean = oldItem == newItem

    override fun areContentsTheSame(oldItem: Double, newItem: Double): Boolean = oldItem == newItem

}
4

1 回答 1

2

这是一个与浅拷贝和深拷贝之间的差异有关的问题。
本文ListAdapter所述:

很高兴知道,ListAdapter 保留对 中提供的列表的引用submitList()。始终确保提供包含其他项目实例的其他列表。如果对项目的引用相同,则DiffUtil比较始终相等的相同项目,并且RecyclerView 不会更新

于 2020-11-03T00:37:29.877 回答