Guest User

Untitled

a guest
Feb 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. Glide.with(context)
  2. .asBitmap()
  3. .load(messageNotification.getLargeIcon())
  4. .into(new SimpleTarget<Bitmap>() {
  5. @Override
  6. public void onResourceReady(Bitmap resource, Transition<? super Bitmap> transition) {
  7. builder.setLargeIcon(resource);
  8.  
  9. }
  10. });
  11.  
  12. }
  13. });`
Add Comment
Please, Sign In to add comment