Skip to content

Instantly share code, notes, and snippets.

@fnzainal
Created March 19, 2016 13:34
Show Gist options
  • Save fnzainal/aeae1e90b4667719bb1d to your computer and use it in GitHub Desktop.
Save fnzainal/aeae1e90b4667719bb1d to your computer and use it in GitHub Desktop.
adding header on url glide image loader
GlideUrl glideUrl = new GlideUrl(url, new LazyHeaders.Builder()
.addHeader("key","value").build());
Glide.with(getApplicationContext())
.load(glideUrl)
.into(imageView);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment