ImageView 备忘录

来源:互联网 发布:mysql date_format 编辑:程序博客网 时间:2024/05/22 16:06

1、想实现图片横向占满ImageView,在保持横宽比的条件下,纵向实现包裹内容,需用如下属性搭配,关键在于adjustViewBounds属性为true,ScaleType用centerCrop

android:layout_width="match_parent"android:layout_height="wrap_content"android:adjustViewBounds="true"android:scaleType="centerCrop"

0 0