Skip to content

Instantly share code, notes, and snippets.

@hitherejoe
Created January 1, 2016 11:35
Show Gist options
  • Save hitherejoe/af248540ef6ff421c661 to your computer and use it in GitHub Desktop.
Save hitherejoe/af248540ef6ff421c661 to your computer and use it in GitHub Desktop.
Glide.with(getActivity())
.load(uri)
.asBitmap()
.centerCrop()
.error(mDefaultBackground)
.into(new SimpleTarget<Bitmap>(width, height) {
@Override
public void onResourceReady(Bitmap resource,
GlideAnimation<? super Bitmap>
glideAnimation) {
mBackgroundManager.setBitmap(resource);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment