大葱明
大葱明
**Describe the bug** 我在使用notifyItemChanged(positon,payload) 更新数据源 convert(holder: BaseViewHolder, item: Bean,payloads: List) 和 convert(holder: BaseViewHolder, item: Bean) 都会被触发 这是正常的行为吗? Steps to reproduce the behavior: 我的Adapter 继承的是BaseMultiItemQuickAdapter
版本为com.yanzhenjie.recyclerview:x:1.3.2 使用SwipeRecyclerView + DefaultLoadMoreView 现象如标题所述 以下是我使用代码部分片段 if (data.isSuccess) { if (!data.hasMore) finishBrowseBlock.invoke() when { data.isFirstEmpty -> { loadService.showNoData() } data.isRefresh -> { **baseQuickAdapter.setList(data.listData)** effectiveDataBlock?.invoke(data.listData) loadService.showSuccess() } else -> { slideUpBlock?.invoke(false)...