1. 程式人生 > >imageview 縮放型別

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與圖片尺寸一樣才顯示完整