这是scaletype的几乎所有展示
http://blog.csdn.net/larryl2003/article/details/6919513
下面是 imageview 宽度固定,高度自适应的方法
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxWidth="0dp"
android:maxHeight="1000dp"
android:adjustViewBounds="true"/>
好像是设置了maxWidth和maxHeight才能使adjustViewBounds生效
具体的请看 http://blog.csdn.net/article/details?id=46840929