Skip to content

Instantly share code, notes, and snippets.

@gastsail
Created June 27, 2020 13:53
Show Gist options
  • Save gastsail/76672af42290a0e4dd2176da42cd85ba to your computer and use it in GitHub Desktop.
Save gastsail/76672af42290a0e4dd2176da42cd85ba to your computer and use it in GitHub Desktop.
abstract class BaseViewHolder<T>(itemView: View) : RecyclerView.ViewHolder(itemView) {
abstract fun bind(item: T,position:Int)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment