Guest User

Untitled

a guest
Aug 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Glide.with(this).asBitmap().load(mSoundItemDataModel.getThumbnailUrl()).into(new SimpleTarget<Bitmap>() {
  2. @Override
  3. public void onResourceReady(Bitmap resource, Transition<? super Bitmap> transition) {
  4. mVidorExoPlayerView.setDefaultArtwork(resource);
  5. // you can use *resource* as bitmap :)
  6. }
  7. });
Add Comment
Please, Sign In to add comment