一:
<ImageView
android:src="@drawable/yourname"//资源来源
android:scaleType="centerInside"//缩放方式
android:layout_width="200dp"//宽
android:layout_height="200dp">//长
</ImageView>
其他缩放方式:
二:
跳转view界限,不超过长宽高,先达到最小的边,在等比缩放。
<ImageView
android:src="@drawable/yourname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxHeight="200dp"//最大高度
android:maxWidth="200dp"//最大宽度
android:adjustViewBounds="true"//调整界限
>
</ImageView>
标签:控件,layout,缩放,height,200dp,studio,Android,android From: https://www.cnblogs.com/JIANGzihao0222/p/17154681.html