美文网首页
Android 固定图片宽度,使高度按照比例缩放

Android 固定图片宽度,使高度按照比例缩放

作者: 十三妹儿儿儿 | 来源:发表于2019-08-22 16:11 被阅读0次

设置android:adjustViewBounds="true"并且android:scaleType="fitCenter"

正常布局方式

<ImageView>

   android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:src="@mipmap/ic_ad_1">

</ImageView>

设置之后

<ImageView>

    android:layout_width="250dp"

    android:layout_height="wrap_content"

    android:src="@mipmap/ic_ad_1"

    android:adjustViewBounds="true"

    android:scaleType="fitCenter">

</ImageView>

前后效果对比

相关文章

网友评论

      本文标题:Android 固定图片宽度,使高度按照比例缩放

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