美文网首页
解决ImageView不能自适应图片大小(wrap_conten

解决ImageView不能自适应图片大小(wrap_conten

作者: zbmzly | 来源:发表于2019-04-24 11:32 被阅读0次

现在的需求是。ImageView最高20dp。保持长宽比。

用height=20,width=wrap_content是不能解决问题的。这个时候就需要用到maxHeightadjustViewBounds这两个属性了。看下代码:

    <ImageView
            android:id="@+id/iautos_iv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:maxHeight="20dp"
            android:adjustViewBounds="true"
            android:clickable="true"
            android:src="@mipmap/iautos"/>

注意这里的width和height都是wrap_content

相关文章

网友评论

      本文标题:解决ImageView不能自适应图片大小(wrap_conten

      本文链接:https://www.haomeiwen.com/subject/lmwwgqtx.html