Skip to content

Instantly share code, notes, and snippets.

@charlesmuchene
Created February 28, 2020 12:05
Show Gist options
  • Select an option

  • Save charlesmuchene/e65d891b09b9f2e6fbcd88a6e7b5e3c5 to your computer and use it in GitHub Desktop.

Select an option

Save charlesmuchene/e65d891b09b9f2e6fbcd88a6e7b5e3c5 to your computer and use it in GitHub Desktop.
Toy View holder
class ToyViewHolder(view: View) : RecyclerView.ViewHolder(view) {
fun bind(toy: Toy) {
// TODO Bind toy to view
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment