I would like to use Glide to load bitmap to ImageView after cropping and re-sizing a bitmap.
I don\'t want to use ImageView.setImageBitmap(bitmap);
bec
You don't need AsyncTask
to load image with Glide. Glide load image asynchronys.
Try to use this code:
Glide.with(mContext)
.load("http://example.com/imageurl")
.asBitmap()
.into(new SimpleTarget<Bitmap>() {
@Override
public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
// you can do something with loaded bitmap here
// .....
holder.mImageView.setImageBitmap(resource);
}
});