ImageView设置属性android:adjustViewBounds=“true”,用于保持图片宽高比例不变,即:当宽高变化时高宽根据图片本身的宽高比而变化。
没有android:adjustViewBounds
<ImageView
android:id="@+id/home_menu_new_NoAdPay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:scaleType="fitXY"
android:src="@drawable/shouyepingbitiaomu" />

有android:adjustViewBounds
<ImageView
android:id="@+id/home_menu_new_NoAdPay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/shouyepingbitiaomu" />

|