Skip to content

Instantly share code, notes, and snippets.

@rinav
Forked from Younes-Charfaoui/GildeError.kt
Created September 3, 2020 23:08
Show Gist options
  • Select an option

  • Save rinav/3967aabdf9322ae79082a44df686086b to your computer and use it in GitHub Desktop.

Select an option

Save rinav/3967aabdf9322ae79082a44df686086b to your computer and use it in GitHub Desktop.
// error image in the phone
Glide.with(context)
.load("yourImageURL")
.placeholder(R.drawable.ic_image)
.error(R.drawable.ic_error)
.into(imageView)
// load another image error
Glide.with(context)
.load("yourImageURL")
.placeholder(R.drawable.ic_image)
.error(Glide.with(context).load("anotherImageURL"))
.into(imageView)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment