Android ImageView高度根据图片比例自适应

设置adjustViewBounds // 是否保持宽高比

android:id="@+id/iv_test"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:layout_gravity="center"/>

你可能感兴趣的:(Android ImageView高度根据图片比例自适应)