Skip to content

Instantly share code, notes, and snippets.

@tfcporciuncula
Created January 14, 2019 14:27
Show Gist options
  • Save tfcporciuncula/e63a1784b341dd28e56d24afd3340418 to your computer and use it in GitHub Desktop.
Save tfcporciuncula/e63a1784b341dd28e56d24afd3340418 to your computer and use it in GitHub Desktop.
DataBindingViewHolder
class DataBindingViewHolder<T>(private val binding: ViewDataBinding) :
RecyclerView.ViewHolder(binding.root) {
fun bind(item: T) {
binding.setVariable(BR.item, item)
binding.executePendingBindings()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment