Skip to content

Instantly share code, notes, and snippets.

@PatrykAndroid
Last active February 19, 2020 19:21
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/68367c6afa52539d58e48e9b8412f004 to your computer and use it in GitHub Desktop.
Save PatrykAndroid/68367c6afa52539d58e48e9b8412f004 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[getRealPosition(position)].color)
}
override fun getItemCount(): Int {
if (items.size <= 1) {
return items.size
}
val period = Int.MAX_VALUE / 2 / items.size
return period * items.size * 2
}
fun getMiddlePosition() = itemCount / 2
fun getListSize() = items.size
private fun getRealPosition(position: Int) = position % getListSize()
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