在ImageView中汗贫,我們需要設(shè)置屬性
android:adjustViewBounds="true"
他的意思是圖片是否保持寬高比身坐。
切記的一點(diǎn)是該屬性需要與maxWidth、MaxHeight一起使用落包,否則單獨(dú)使用沒有效果部蛇。
想實(shí)現(xiàn)標(biāo)題的效果,你可以這樣設(shè)置
<ImageView
android:layout_width="100dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:background="@color/white"
android:maxHeight="1000dp"
android:scaleType="centerCrop" />
設(shè)置好后咐蝇,試試效果吧搪花!