BaseRecyclerViewAdapterHelper icon indicating copy to clipboard operation
BaseRecyclerViewAdapterHelper copied to clipboard

BRVAH:Powerful and flexible RecyclerAdapter

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

**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll...

在使用的时候遇到了这个问题,偶现这个问题,bug截图如下: ![image](https://user-images.githubusercontent.com/51937265/137106209-548db3a9-96c3-48ae-8b48-1f7a44359f4a.png) 图二: ![image](https://user-images.githubusercontent.com/51937265/137106256-d42661a9-8ec4-4b07-90b2-4ece07d55a82.png)

3.x版本中如何使用拖拽

找不到这个getBindingAdapterPosition()方法 java.lang.NoSuchMethodError: No virtual method getBindingAdapterPosition()I in class Lcom/chad/library/adapter/base/viewholder/BaseViewHolder; or its super classes (declaration of 'com.chad.library.adapter.base.viewholder.BaseViewHolder' appears in /data/app/com.closeli.btw-fdY2RSQ_3VLz5f4zNuyHKg==/base.apk) at com.chad.library.adapter.base.BaseQuickAdapter.bindViewClickListener$lambda-7$lambda-6(BaseQuickAdapter.kt:495) at com.chad.library.adapter.base.BaseQuickAdapter.$r8$lambda$aqWf9Mix2Hshed6QsGcdRVGlHL8(Unknown Source:0) at com.chad.library.adapter.base.BaseQuickAdapter$$ExternalSyntheticLambda0.onClick(Unknown Source:4) at android.view.View.performClick(View.java:7312) at...

使用 GridSectionAverageGapItemDecoration 并且开启了 loadmore 会报错

使用的是3.0.4版本,发现这个方法已经被移除了,该用什么方法进行替代呢?

如果给子控件添加了点击事件,再使用条目点击事件,发现点击到子控件时,item事件不触发

两个RecylcyView嵌套 内容会错乱, 3.0.6

当我在首页多布局 首页 View view = inflater.inflate(R.layout.fragment_discover_layout, parent, false); RecyclerView recyclerView = view.findViewById(R.id.discover_view); initRefreshLayout(view); discoverAdapter = new DiscoverAdapter(getContext(),allData); discoverAdapter.setUseEmpty(false); // discoverAdapter.isUseEmpty(false); LinearLayoutManager linearLayoutManager = new LinearLayoutManager(getContext()); linearLayoutManager.setOrientation(LinearLayoutManager.VERTICAL); // linearLayoutManager.setRecycleChildrenOnDetach(true); recyclerView.setLayoutManager(linearLayoutManager); //...