BaseAdapter
open class BaseAdapter<T : Any> @JvmOverloads constructor(var mContext: Context, factories: MutableList<ItemHolder.HolderFactory<T>>, val mItemList: MutableList<ItemWrapper<T>> = mutableListOf()) : RecyclerView.Adapter<ItemHolder<T>> , ItemClickListener<T>
Since
1.2.0
Constructors
Link copied to clipboard
constructor(mContext: Context, factories: MutableList<ItemHolder.HolderFactory<T>>, 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.