我有一个BaseAdapter,它为我在应用程序中使用的所有recyclerview提供抽象,从而将数据附加到已在我的fragment / activity中初始化的适配器。 当我第二次附加数据时,就会出现问题。 之前的数据列表之间的故障时间少于一秒。尽管我确实在添加新服务器数据之前清除了列表,但没有进行平稳过渡。有人可以告诉我我在做什么错吗? 这是BaseAdapter方法:
abstract class BaseAdapter<T : Any , VH :BaseItemViewHolder<T,out BaseItemViewModel<T>>>(
parentLifeCycle: Lifecycle,
private val dataList: ArrayList<T>
) : RecyclerView.Adapter<VH>(){
*************Some code here *************
override fun getItemCount(): Int = dataList.size
override fun onBindViewHolder(holder: VH, position: Int) {
holder.bind(dataList[position])
}
fun appendData(data: MutableList<T>) {
if(dataList.isEmpty()) {
this.dataList.addAll(data)
notifyDataSetChanged()
}else {
updateList(data)
}
}
fun updateList(list: List<T>) {
dataList.clear()
dataList.addAll(list)
notifyDataSetChanged()
}
fun clearList(){
dataList.clear()
notifyDataSetChanged()
}
我在活动中称其为“我使用Livedata更新它”。这里的it.items是数据,来自服务器,而Items是我要附加到Recyclerview的详细信息列表。
it.items?.let { it1 ->
Items.clear()
Items = InitialiseUiItems(it.items!!)
Adapter.appendData(UiItems)
}