将图像对齐到ImageView的底部

时间:2018-02-24 23:47:04

标签: android android-layout imageview android-imageview scaletype

我有一个图像在ImageView中渲染时从顶部和底部剪切。我希望它只能从顶部切割。这是问题的一个例子。黄色表示图像,蓝色表示由ImageView覆盖的屏幕视口。

enter image description here

我已尝试将FIT_END作为scaleType,它没有帮助,因为图像在视图内缩小,左边部分留有空白区域。另外,尝试使用adjustViewBounds,没有任何变化。我不希望图像缩小。

编辑:这是我的布局,只有一个ImageView。

<ImageView
    android:id="@+id/background"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="centerCrop" />

0 个答案:

没有答案