Skip to content

Instantly share code, notes, and snippets.

@DjakaTechnology
Created January 15, 2020 15:19
Show Gist options
  • Select an option

  • Save DjakaTechnology/b09f5e8d8d93866709b33bc5183468f9 to your computer and use it in GitHub Desktop.

Select an option

Save DjakaTechnology/b09f5e8d8d93866709b33bc5183468f9 to your computer and use it in GitHub Desktop.
interface AdapterDelegate <T> {
fun isForViewType(items: List<T>, position: Int): Boolean
fun onCreateViewHolder(parent: ViewGroup): RecyclerView.ViewHolder
fun onBindViewHolder(items: List<T>, position: Int, holder: RecyclerView.ViewHolder)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment