Closed MohammadRezaei92 closed 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) { }
});
I tried to set button icon with glide but nothing appear. @medyo