Skip to content

Instantly share code, notes, and snippets.

@fvilarino
Created April 19, 2021 20:40
Show Gist options
  • Save fvilarino/0620e9b7515dd3f4798ba6911f0fb3f8 to your computer and use it in GitHub Desktop.
Save fvilarino/0620e9b7515dd3f4798ba6911f0fb3f8 to your computer and use it in GitHub Desktop.
Base Viewholder class
abstract class RecyclerViewViewHolder<T : Diffable>(
protected val binding: ViewDataBinding
) : RecyclerView.ViewHolder(binding.root) {
abstract fun bind(bindingItem: T)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment