android ImageView 图片宽度全屏,高度自适应的写法

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/res_version_bg" />
<!-- Set this to true if you want the ImageView to adjust its bounds
to preserve the aspect ratio of its drawable. -->

如果希望ImageView调整其边界,请将此设置为true 以保持其可拉伸的长宽比

<attr name="adjustViewBounds" format="boolean" />
把图片按比例扩大/缩小到View的宽度,显示在View的上部分位置
android:scaleType="fitXY"

android ImageView 图片宽度全屏,高度自适应的写法

上一篇:Reporting Service 2008 “报表服务器数据库内出错。此错误可能是因连接失败、超时或数据库中磁盘空间不足而导致的”


下一篇:Object C学习笔记24-关键字总结