Guest User

Untitled

a guest
May 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. Glide.with(holder.icon.getContext())
  2. .load(imageUrl)
  3. .diskCacheStrategy(DiskCacheStrategy.ALL)
  4. .centerCrop()
  5. .into(new GlideDrawableImageViewTarget(holder.icon) {
  6.  
  7.  
  8. @Override
  9. public void onLoadFailed(Exception e, Drawable errorDrawable) {
  10. super.onLoadFailed(e, errorDrawable);
  11. Glide.clear(holder.icon);
  12. holder.icon.setVisibility(View.GONE);
  13. }
  14.  
  15. });
Add Comment
Please, Sign In to add comment