Hi,
Here is how you can set the scale mode of an ImageView like CSS background-size property.
'scale = cover,contain,fill
Public Sub SetImageView(iv As ImageView,bmp As Bitmap, scale As String)
Dim jo As JavaObject=iv
jo.RunMethod("setImageBitmap",Array(bmp))
Select scale...