Skip to content

Instantly share code, notes, and snippets.

@illuzor
Created September 17, 2018 20:11
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 illuzor/d7084ab179ad6c6f09484ab0fad75f75 to your computer and use it in GitHub Desktop.
Save illuzor/d7084ab179ad6c6f09484ab0fad75f75 to your computer and use it in GitHub Desktop.
package com.illuzor.lesson.wallpapers.adapters
import android.view.View
import android.widget.ImageView
import android.widget.TextView
import androidx.recyclerview.widget.RecyclerView
import com.bumptech.glide.load.resource.drawable.DrawableTransitionOptions
import com.illuzor.lesson.wallpapers.GlideApp
import com.illuzor.lesson.wallpapers.R
class CategoryViewHolder(view: View) : RecyclerView.ViewHolder(view) {
private val ivPreview: ImageView = view.findViewById(R.id.iv_preview)
private val tvTitle: TextView = view.findViewById(R.id.tv_title)
fun setTitle(title: String) {
tvTitle.text = title
}
fun loadImage(url: String) =
GlideApp.with(itemView)
.load(url)
.placeholder(R.drawable.placeholder)
.transition(DrawableTransitionOptions.withCrossFade())
.into(ivPreview)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment