Package-level declarations
Types
Link copied to clipboard
open class SimpleRcvDataBindingListAdapter<ITEM : Any, BINDING : ViewDataBinding>(@LayoutRes layoutRes: Int, listDiffUtil: RcvListDiffUtilCallBack<ITEM>, onBind: (BaseRcvDataBindingViewHolder<BINDING>, ITEM, position: Int) -> Unit) : BaseRcvListAdapter<ITEM, BaseRcvDataBindingViewHolder<BINDING>>
A simple RecyclerView ListAdapter implementation with DataBinding support.
Provides a convenient way to create adapters without subclassing.
DataBinding을 지원하는 간단한 RecyclerView ListAdapter 구현체입니다.
서브클래싱 없이 어댑터를 생성하는 편리한 방법을 제공합니다.
Link copied to clipboard
open class SimpleRcvListAdapter<ITEM : Any>(@LayoutRes layoutRes: Int, listDiffUtil: RcvListDiffUtilCallBack<ITEM>, onBind: (BaseRcvViewHolder, ITEM, position: Int) -> Unit) : BaseRcvListAdapter<ITEM, BaseRcvViewHolder>
A simple RecyclerView ListAdapter implementation without DataBinding support.
Provides a convenient way to create adapters without subclassing.
DataBinding 없이 사용하는 간단한 RecyclerView ListAdapter 구현체입니다.
서브클래싱 없이 어댑터를 생성하는 편리한 방법을 제공합니다.
Link copied to clipboard
open class SimpleRcvViewBindingListAdapter<ITEM : Any, BINDING : ViewBinding>(inflate: (LayoutInflater, ViewGroup, Boolean) -> BINDING, listDiffUtil: RcvListDiffUtilCallBack<ITEM>, onBind: (BaseRcvViewBindingViewHolder<BINDING>, ITEM, position: Int) -> Unit) : BaseRcvListAdapter<ITEM, BaseRcvViewBindingViewHolder<BINDING>>
A simple RecyclerView ListAdapter implementation with ViewBinding support.
Provides a convenient way to create adapters without subclassing.
ViewBinding을 지원하는 간단한 RecyclerView ListAdapter 구현체입니다.
서브클래싱 없이 어댑터를 생성하는 편리한 방법을 제공합니다.