Skip to content

Instantly share code, notes, and snippets.

@PatrykAndroid
Last active February 18, 2020 20:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PatrykAndroid/9a66f2a797897f4ddcd32099339e19dd to your computer and use it in GitHub Desktop.
Save PatrykAndroid/9a66f2a797897f4ddcd32099339e19dd to your computer and use it in GitHub Desktop.
class PageAdapter(private val items: List<Item>) : RecyclerView.Adapter<PageAdapter.ViewHolder>() {
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
return ViewHolder(LayoutInflater.from(parent.context).inflate(R.layout.item, parent, false))
}
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
holder.item.setBackgroundColor(items[position].color)
}
override fun getItemCount() = items.size
class ViewHolder(view: View) : RecyclerView.ViewHolder(view) {
val item: ImageView = view.findViewById(R.id.item)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment