imageview 缩放类型

<ImageView
    android:id="@+id/imageView"
    android:layout_width="@dimen/x600"
    android:layout_height="@dimen/y500"
    android:scaleType="centerCrop"
    android:src="@mipmap/test" />
android:scaleType="centerCrop"//截取图片中间部分填满imageview————显示不完整
android:scaleType="centerInside"//图片显示在imageview中间————————显示完整
android:scaleType="fitCenter"//图片显示在imageview中间————————显示完整
android:scaleType="fitXY"//图片拉升或压缩填满imageview————————————————显示完整,变形
android:scaleType="fitStart"//图片居左上显示——————————————————显示完整
android:scaleType="fitEnd"//图片居右下显示————————————————————显示完整
android:scaleType="matrix"//图片绝对物理显示,图片不变形显示——————只有imageview与图片尺寸一样才显示完整

猜你喜欢

转载自blog.csdn.net/meixi_android/article/details/83148505