“ ImageView”中的“ center”和“ centerCrop”有什么区别?

时间:2019-07-02 15:38:00

标签: android xml

1-android:scaleTaype="center"

2-android:scaleTaype="centerCrop"

1和2有什么区别?

1 个答案:

答案 0 :(得分:2)

CENTER :-将图像在视图中居中,但不缩放。

enter image description here

CENTER_CROP :-统一缩放图像(保持图像的纵横比),以使图像的两个尺寸(宽度和高度)都等于或大于视图的相应尺寸(减去填充)。然后,图像在视图中居中。 enter image description here

有关所有 ScaleTypes 的概述,请参见this official documentation,有关详细说明,请参见this site