android 图片宽度满屏,高度跟宽度成比例1:1

来源:互联网 发布:mac的iphoto和照片 编辑:程序博客网 时间:2024/06/06 07:49

一   采用的是  IamgeView

显示宽度满屏,高度跟宽度成 比例 1:1

把图片拉成正方形

需要添加两个参数。

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

二    adjustViewBounds 设置 true

三    scaleType 设置 fitXY

..............................................


完成



阅读全文
1 0
原创粉丝点击