美文网首页Android深入
Android 图片宽度固定,高度自适应

Android 图片宽度固定,高度自适应

作者: 人世看客 | 来源:发表于2022-08-04 16:37 被阅读0次

    这个比较简单,主要记得设置android:adjustViewBounds="true"

                    <ImageView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:scaleType="centerCrop"
                        android:adjustViewBounds="true"
                        android:src="@drawable/main_test_1"/>
    

    相关文章

      网友评论

        本文标题:Android 图片宽度固定,高度自适应

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