Android深入

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

2022-08-04  本文已影响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"/>
上一篇下一篇

猜你喜欢

热点阅读