medyo / Fancybuttons

Icons, Borders, Radius ... for Android buttons
1.77k stars 397 forks source link

Set icon with glide #92

Closed MohammadRezaei92 closed 7 years ago

MohammadRezaei92 commented 7 years ago

I tried to set button icon with glide but nothing appear. @medyo

medyo commented 7 years ago

Hi @visro,

Try the following

Glide.with(context)
.load(mImage)
.asBitmap()
.into(new SimpleTarget<Bitmap>() {
@Override
public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
     mybutton.getIconImageObject().setImageBitmap(resource);
 }

@Override
public void onLoadFailed(Exception e, Drawable errorDrawable) { }
});