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"/>