What's the default ScaleType of ImageView? [duplicate]
Solution 1:
FIT_CENTER:
ImageView.ScaleType
FIT_CENTER
Scale the image using
CENTER
. From XML, use this syntax:android:scaleType="fitCenter"
.
FIT_CENTER:
ImageView.ScaleType
FIT_CENTER
Scale the image using
CENTER
. From XML, use this syntax:android:scaleType="fitCenter"
.