Use glide to load bitmap to ImageView
问题 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); because I am loading lots of images and it might be taking up some memory, although the images are small in size, I just need to use Glide because I know it optimises image caching. I read this post, but I didn't quite understand his solution when I tried implementing it. So maybe someone has a cleaner and more easily understandable solution. This