```@BindingAdapter("imageUrl") fun bindImage(imgVi...
# android
m
Copy code
@BindingAdapter("imageUrl")
fun bindImage(imgView: ImageView, imgUrl: String?) {
    imgUrl?.let {
        val imgUri = imgUrl.toUri().buildUpon().scheme("https").build()
        imgView.load(imgUri) 
    }
}