如需转载请著名
作者:倚风听雪 来源:http://hklongshao.iteye.com
如果想设置图片固定大小,又想保持图片宽高比,需要如下设置:
1 ) 设置 setAdjustViewBounds 为 true ;
2 ) 设置 maxWidth 、 MaxHeight ;
3 ) 设置设置 layout_width 和 layout_height 为 wrap_content 。
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10px"
>
<ImageView
android:adjustViewBounds="true"
android:layout_width="fill_parent"
android:layout_height="160px"
android:scaleType="fitCenter"
android:layout_gravity="center"
android:src="@drawable/icon"
/>
</LinearLayout>