don't upscale images in caption dialog (#2165)

* don't upscale images in caption dialog

* don't upscale images in caption dialog
This commit is contained in:
Konrad Pozniak 2021-05-21 17:52:03 +02:00 committed by Conny Duck
parent f684f8f9a1
commit 30ed9a4d1c
1 changed files with 3 additions and 2 deletions

View File

@ -31,6 +31,7 @@ import androidx.lifecycle.LifecycleOwner
import androidx.lifecycle.LiveData
import at.connyduck.sparkbutton.helpers.Utils
import com.bumptech.glide.Glide
import com.bumptech.glide.load.resource.bitmap.DownsampleStrategy
import com.bumptech.glide.request.target.CustomTarget
import com.bumptech.glide.request.transition.Transition
import com.github.chrisbanes.photoview.PhotoView
@ -97,10 +98,10 @@ fun <T> T.makeCaptionDialog(existingDescription: String?,
dialog.show()
// Load the image and manually set it into the ImageView because it doesn't have a fixed
// size. Maybe we should limit the size of CustomTarget
// Load the image and manually set it into the ImageView because it doesn't have a fixed size.
Glide.with(this)
.load(previewUri)
.downsample(DownsampleStrategy.CENTER_INSIDE)
.into(object : CustomTarget<Drawable>(4096, 4096) {
override fun onLoadCleared(placeholder: Drawable?) {
imageView.setImageDrawable(placeholder)