我正在开发一个简单的应用程序,人们可以在其中将产品添加到购物篮中(在ProductsFragment中),然后可以更改购物篮中的产品数量(在BasketFragment中)。我对两个片段都使用带有ListAdapter的RecyclerView。我正在将LiveData实例包装在“篮子”周围,以便观察片段中的任何变化。当我更改数量时,将通知该片段,并且在发生这种情况时,我正在使用ListAdapter的SubmitList()方法来仅刷新recyclerview中的更改数据。但是,DiffUtil areContentsTheSame()方法始终返回true,因此,直到我返回上一个片段并返回到购物篮或滚动列表之前,RecyclerView项才得到更新。
ViewModel
private val _basket = MutableLiveData<Basket>()
val basket: LiveData<Basket>
get() = _basket
fun onIncrementBasketProductQuantityButtonPressed(product: Product) {
val newProduct = product.copy(quantity = product.quantity.plus(1))
val newList= ArrayList(_basket.value!!.basket)
val newBasket = _basket.value!!.copy(basket = newList)
newBasket.updateProductInBasket(newProduct, newProduct.quantity)
_basket.value = newBasket
}
Basket
data class Basket(@Json(name = "basket") val basket: MutableList<Product> = arrayListOf()): Serializable {
fun updateProductInBasket(product: Product, quantity: Int) {
val p = findProduct(product)
if (p != null) {
p.quantity = quantity
p.setSubTotal()
} else {
addNewProductToBasket(product, quantity)
}
}
private fun addNewProductToBasket(product: Product, quantity: Int) {
product.quantity = quantity
product.setSubTotal()
this.basket.add(product)
}
private fun findProduct(product: Product) : Product? {
return this.basket.find { it.name == product.name && it.size == product.size }
}
}