JIANGzihao0222

导航

 

 

 一:

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


posted on 2023-02-25 16:17  实名吓我一跳  阅读(49)  评论(0)    收藏  举报