您好,登錄后才能下訂單哦!
原文地址:http://bon-app-etit.blogspot.hk/2014/01/p_w_picpathview-scaletypes.html
當圖片要在應用程序上顯示的時候,我們需要關心它將以怎樣的方式進行縮放,最基本的方式是在布局文件中的ImageView中設置正確的縮放類型(scaleType)。
Android中ImageView提供了以下不同的縮放類型:
center
centerInside
centerCrop
fitXY
fitStart
fitCenter(默認)
fitEnd
matrix(用于圖片的矩陣轉換)
下面提供設置不同的縮放類型ImageView顯示的截圖
布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:src="@drawable/logo" android:scaleType="centerCrop" /> </RelativeLayout>
圖片大于給定的空間截圖:
圖片小于給定的空間截圖:
PS:通過對比每種ScaleType的縮放效果圖,加深對ScaleType的理解。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。