在Android中,我定义了一个ImageView的layout_width为fill_parent(它占用了手机的全宽度)。

如果我放入ImageView的图像大于layout_width, Android会缩放?那么高度呢?当Android缩放图像时,它会保持纵横比吗?

我发现在ImageView的顶部和底部有一些空白当Android缩放一个比ImageView大的图像时。这是真的吗?如果是,我如何消除空白?


当前回答

给其他有这种问题的人。你有一个ImageView,你想要它的宽度为fill_parent,高度按比例缩放:

添加这两个属性到你的ImageView:

android:adjustViewBounds="true"
android:scaleType="centerCrop"

并设置ImageView的宽度为fill_parent,高度为wrap_content。

另外,如果你不想让你的图像被裁剪,试试这个:

 android:adjustViewBounds="true"
 android:layout_centerInParent="true"

其他回答

如果你想让你的图像占据尽可能大的空间,那么最好的选择是

android:layout_weight="1"
android:scaleType="fitCenter"

对于你们中的任何人,想要图像精确地适应imageview适当缩放,不裁剪使用

imageView.setScaleType(ScaleType.FIT_XY);

imageView是代表你的imageView的视图

你不需要任何java代码。你只需要:

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="centerCrop" />

键在width和height的匹配父项中

给其他有这种问题的人。你有一个ImageView,你想要它的宽度为fill_parent,高度按比例缩放:

添加这两个属性到你的ImageView:

android:adjustViewBounds="true"
android:scaleType="centerCrop"

并设置ImageView的宽度为fill_parent,高度为wrap_content。

另外,如果你不想让你的图像被裁剪,试试这个:

 android:adjustViewBounds="true"
 android:layout_centerInParent="true"

看到android: adjustViewBounds。

如果你想让ImageView调整它的边界来保留它的可绘制对象的纵横比,将此设置为true。