BaseBindAdapter
open class BaseBindAdapter<T : Any> @JvmOverloads constructor(var mContext: Context, val mVariableId: Int, var mItemList: MutableList<ItemWrapper<T>> = mutableListOf()) : RecyclerView.Adapter<ItemBindHolder<T>> , ItemClickListener<T>
Since
1.2.0
Constructors
Link copied to clipboard
constructor(mContext: Context, mVariableId: Int, mItemList: MutableList<ItemWrapper<T>> = mutableListOf())
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Register a callback to be invoked when the item is clicked.
Link copied to clipboard
Register a callback to be invoked when the item is clicked and held.
Link copied to clipboard
Returns ItemBindHolder by default. If you want to customize ItemBindHolder you need to inherit ItemBindHolder and override the setViewHolder method to use your customized ItemBindHolder as the return value.