Skip to content

Instantly share code, notes, and snippets.

@EmmanuelGuther
Created October 2, 2018 12:04
Show Gist options
  • Select an option

  • Save EmmanuelGuther/3284883e6aa8a368efa91e597acab51d to your computer and use it in GitHub Desktop.

Select an option

Save EmmanuelGuther/3284883e6aa8a368efa91e597acab51d to your computer and use it in GitHub Desktop.
Glide placeholder example kotlin
fun example(){
Glide.with(context)
.load(items[position])
.apply(RequestOptions()
.placeholder(R.drawable.animated_loading_icon)
)
.into(holder.imageView)
}
//https://bumptech.github.io/glide/doc/options.html#generated-api
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment