Skip to content

Instantly share code, notes, and snippets.

@bitvale
Created August 4, 2018 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitvale/dc80723edf222cb52b4f13b6f0edfeac to your computer and use it in GitHub Desktop.
Save bitvale/dc80723edf222cb52b4f13b6f0edfeac to your computer and use it in GitHub Desktop.
open class BaseViewHolder<T>(private val binding: ViewDataBinding) : RecyclerView.ViewHolder(binding.root) {
open fun bind(item: T) {
binding.setVariable(BR.obj, item)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment