用于控制图像在imageview中的显示模式的属性是什么?
时间: 2024-05-21 18:15:01 浏览: 70
用于控制图像在ImageView中的显示模式的属性是`android:scaleType`。这个属性可以设置为以下几种值:
- center: 图像居中显示,不进行缩放
- centerCrop: 将图像按比例缩放,使之充满ImageView,并居中显示
- centerInside: 将图像按比例缩放,使之完全显示在ImageView中,并居中显示
- fitCenter: 将图像按比例缩放,使之完全显示在ImageView中,并居中显示
- fitEnd: 将图像按比例缩放,使之完全显示在ImageView中,并靠近ImageView的底部
- fitStart: 将图像按比例缩放,使之完全显示在ImageView中,并靠近ImageView的顶部
- fitXY: 将图像拉伸或缩小以填满ImageView的整个区域,不保持原始宽高比。
阅读全文