Fixing dark/light loading of the correct map drawable

This commit is contained in:
Maxime NATUREL 2022-07-20 14:49:52 +02:00
parent 7f43a1bb06
commit 4a817fd9f5

View file

@ -19,6 +19,7 @@ package im.vector.app.features.home.room.detail.timeline.item
import android.content.res.Resources import android.content.res.Resources
import android.graphics.drawable.ColorDrawable import android.graphics.drawable.ColorDrawable
import android.widget.ImageView import android.widget.ImageView
import androidx.core.content.ContextCompat
import androidx.core.view.updateLayoutParams import androidx.core.view.updateLayoutParams
import com.bumptech.glide.load.MultiTransformation import com.bumptech.glide.load.MultiTransformation
import com.bumptech.glide.load.resource.bitmap.CenterCrop import com.bumptech.glide.load.resource.bitmap.CenterCrop
@ -52,7 +53,7 @@ class DefaultLiveLocationShareStatusItem : LiveLocationShareStatusItem {
height = mapHeight height = mapHeight
} }
GlideApp.with(mapImageView) GlideApp.with(mapImageView)
.load(R.drawable.bg_no_location_map) .load(ContextCompat.getDrawable(mapImageView.context, R.drawable.bg_no_location_map))
.transform(MultiTransformation(CenterCrop(), mapCornerTransformation)) .transform(MultiTransformation(CenterCrop(), mapCornerTransformation))
.into(mapImageView) .into(mapImageView)
} }