Skip to content

Instantly share code, notes, and snippets.

@jifferon
Last active August 29, 2017 20:02
Show Gist options
  • Save jifferon/b0ed1f198c9e535fc78e8a7238c53b49 to your computer and use it in GitHub Desktop.
Save jifferon/b0ed1f198c9e535fc78e8a7238c53b49 to your computer and use it in GitHub Desktop.
abstract class BaseHolder(itemView: View, protected var callback: Callback) : RecyclerView.ViewHolder(itemView) {
protected var unbinder: Unbinder? = null
protected lateinit var data: Good
abstract fun bindData(data: Good)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment