Created
April 19, 2021 20:40
-
-
Save fvilarino/0620e9b7515dd3f4798ba6911f0fb3f8 to your computer and use it in GitHub Desktop.
Base Viewholder class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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