Skip to content

Instantly share code, notes, and snippets.

@MuratVarol
Created December 30, 2019 11:46
Show Gist options
  • Save MuratVarol/792bd5ef8dc3edba765ae3a29c695587 to your computer and use it in GitHub Desktop.
Save MuratVarol/792bd5ef8dc3edba765ae3a29c695587 to your computer and use it in GitHub Desktop.
abstract class BaseViewHolder(val itemBinding: ViewDataBinding) :
RecyclerView.ViewHolder(itemBinding.root) {
abstract fun bindData(position: Int)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment