1. 程式人生 > >android imageview中 scaletype 與 寬度固定高度自適應

android imageview中 scaletype 與 寬度固定高度自適應

原文地址:https://blog.csdn.net/qq_32515625/article/details/71700080

這是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