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

猜你喜欢

转载自blog.csdn.net/chenhuakang/article/details/83619550
今日推荐