Center crop the map

This commit is contained in:
Maxime NATUREL 2022-07-20 11:28:28 +02:00
parent 985e09a68c
commit d632c866a2

View File

@ -20,6 +20,8 @@ import android.content.res.Resources
import android.graphics.drawable.ColorDrawable
import android.widget.ImageView
import androidx.core.view.updateLayoutParams
import com.bumptech.glide.load.MultiTransformation
import com.bumptech.glide.load.resource.bitmap.CenterCrop
import com.bumptech.glide.load.resource.bitmap.GranularRoundedCorners
import com.bumptech.glide.load.resource.bitmap.RoundedCorners
import im.vector.app.R
@ -51,7 +53,7 @@ class DefaultLiveLocationShareStatusItem : LiveLocationShareStatusItem {
}
GlideApp.with(mapImageView)
.load(R.drawable.bg_no_location_map)
.transform(mapCornerTransformation)
.transform(MultiTransformation(CenterCrop(), mapCornerTransformation))
.into(mapImageView)
}