How can I do this using Glide? I want to cache image to use it another time also. Thanks in advance.
Here's the code for Kotlin
Glide.with(this).load(UCrop.getOutput(data)).into(object :
CustomTarget() {
override fun onLoadCleared(placeholder: Drawable?) {
TODO("Not yet implemented")
}
override fun onResourceReady(
resource: Drawable,
transition: Transition?
) {
ib_pet_profile_image.background=resource
}
})