BaseRecyclerViewAdapterHelper icon indicating copy to clipboard operation
BaseRecyclerViewAdapterHelper copied to clipboard

BRVAH:Powerful and flexible RecyclerAdapter

Results 246 BaseRecyclerViewAdapterHelper issues
Sort by recently updated
recently updated
newest added

avpg: Remote load failed. No local fallback found. at com.google.android.gms.dynamite.DynamiteModule.f(:com.google.android.gms@[email protected] (190408-705155572):620) at akrg.a(:com.google.android.gms@[email protected] (190408-705155572):3) at com.google.android.gms.maps.internal.CreatorImpl.d(:com.google.android.gms@[email protected] (190408-705155572):7) at com.google.android.gms.maps.internal.CreatorImpl.newMapViewDelegate(:com.google.android.gms@[email protected] (190408-705155572):11) at byjb.fB(:com.google.android.gms@[email protected] (190408-705155572):273) at oll.onTransact(:com.google.android.gms@[email protected] (190408-705155572):102) at android.os.Binder.transact(Binder.java:1190) at com.google.android.gms.internal.maps.zza.zzJ(com.google.android.gms:play-services-maps@@19.0.0:2)...

3.0.14版本进行混淆后打包还是遇到如下问题: `Process: com.tianma.sport, PID: 24318 java.lang.ClassCastException: com.chad.library.adapter.base.viewholder.BaseViewHolder cannot be cast to com.chad.library.adapter.base.viewholder.BaseDataBindingHolder at ql.i.p(SourceFile:1) at l8.d.K(SourceFile:22) at l8.d.L(SourceFile:17) at l8.d.onBindViewHolder(SourceFile:2) at androidx.recyclerview.widget.RecyclerView$Adapter.bindViewHolder(SourceFile:155) at androidx.recyclerview.widget.RecyclerView$Recycler.tryBindViewHolderByDeadline(SourceFile:68) at androidx.recyclerview.widget.RecyclerView$Recycler.tryGetViewHolderForPositionByDeadline(SourceFile:567) at androidx.recyclerview.widget.RecyclerView$Recycler.getViewForPosition(SourceFile:2) at androidx.recyclerview.widget.RecyclerView$Recycler.getViewForPosition(SourceFile:1)...

1. 当前使用的版本号: 4.1.4 2. 复现操作描述: 1. RecyclerView使用`GridLayoutManager/QuickGridLayoutManager`(`StaggeredGridLayoutManager`没有尝试,但预估会发生同样的问题), 添加`ItemDecoration` 2. 启用状态布局, 并设置状态布局 3. 调用`submitList(emptyList())`设置数据为空 4. 此时会发生`ItemDecoration`被清空的情况. 3. 已经Fork项目, 并在已创建出现问题的代码, 请查看链接: https://github.com/Chen-Xi-g/BaseRecyclerViewAdapterHelper 4. 复现视频 https://github.com/user-attachments/assets/ae877b22-2090-4048-bb0e-d4ad1a1687b7 问题发生在调用`submitList`之后调用了`notifyItemRangeRemoved`, ```kotlin open fun submitList(list: List?) {...

``` helper = new QuickAdapterHelper.Builder(adapter) .setTrailingLoadStateAdapter(new TrailingLoadStateAdapter.OnTrailingListener() { @Override public void onLoad() { request() } @Override public void onFailRetry() { request() } @Override public boolean isAllowLoading() { return !binding.swipeRefreshLayout.isRefreshing(); }...

Thank you for contributing to BaseRecyclerViewAdapterHelper. Before pressing the "Create Pull Request" button, please consider the following points: - [1] Please give a description about what and why you are...

``` val enableUnitQuickDragAndSwipe = QuickDragAndSwipe().setDragMoveFlags(ItemTouchHelper.UP or ItemTouchHelper.DOWN) enableUnitQuickDragAndSwipe.attachToRecyclerView(mRecyclerView) .setDataCallback(enableCurrencyAdapter) .setItemDragListener(mItemDragListener) val disableUnitQuickDragAndSwipe = QuickDragAndSwipe().setDragMoveFlags(ItemTouchHelper.UP or ItemTouchHelper.DOWN) disableUnitQuickDragAndSwipe.attachToRecyclerView(mRecyclerView) .setDataCallback(disableCurrencyAdapter) .setItemDragListener(mItemDragListener) concatAdapter.addAdapter(enableTitleAdapter) concatAdapter.addAdapter(enableCurrencyAdapter) concatAdapter.addAdapter(disableTitleAdapter) concatAdapter.addAdapter(disableCurrencyAdapter) mRecyclerView.adapter = concatAdapter``` 这样添加的拖动事件,可以拖动但是不正确