binding-collection-adapter icon indicating copy to clipboard operation
binding-collection-adapter copied to clipboard

Easy way to bind collections to listviews and recyclerviews with the new Android Data Binding framework

Results 31 binding-collection-adapter issues
Sort by recently updated
recently updated
newest added

大家是如何给recyclerview 的item点击时添加选中状态的,这边添加item选中状态会造成卡顿,严重掉帧。

Does the recyclerview need to use the current item index in the item layout? Could you tell me how to do it

Is this a general databinding issue or question? You are more likely to get a response from somewhere like [StackOverflow](https://stackoverflow.com/questions/tagged/android-databinding). ## Issue Hello All, I am facing a strange issue...

![image](https://user-images.githubusercontent.com/14036606/90598605-ee6cda80-e225-11ea-9afe-f2b06d1f9505.png)

错误: 无法将类 BindingRecyclerViewAdapters中的方法 setAdapter应用到给定类型; 需要: RecyclerView,ItemBinding

needs info

Is this a general databinding issue or question? You are more likely to get a response from somewhere like [StackOverflow](https://stackoverflow.com/questions/tagged/android-databinding). ## Issue Please be as detailed as possible and include...

I've change the version of `me.tatarka.bindingcollectionadapter:bindingcollectionadapter:1.3.0` to `me.tatarka.bindingcollectionadapter2:bindingcollectionadapter:2.2.0`. But actually I got a errors like: ``` :app:compileDebugJavaWithJavacC:\Projects\xxx\adapter\CustomBindingEvenRowAdapter.java:5: error: cannot find symbol import me.tatarka.bindingcollectionadapter2.BR; ^ symbol: class BR location: package me.tatarka.bindingcollectionadapter2...

`onDistinctItems` is called when the adapter receives new (distinct from previous) `items`. This allows for changing the notification behavior in a backward-compatible way e.g. from `notifyDataSetChanged() to `notifyItemRangeInserted()`. Our app...

## Feature Request Without using ktx extensions the code looks as follows ``` OnItemBindClass() .map(MySealedClass.Impl1::class.java, /*use either overload*/) .map(MySealedClass.Impl2::class.java, /*use either overload*/) ``` using the ktx extension it should look...

enhancement