ImageView以mach_parent高度为中心的图像

时间:2014-11-16 12:28:45

标签: android imageview

我需要像这个图像一样为肖像模式创建ImageView: enter image description here

但无论我做什么,我得到的结果如下: enter image description here

EDITED 来自第三张图片的XML示例

<ImageView
    android:id="@+id/image"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="centerCrop"
    android:adjustViewBounds="true"
    android:layout_gravity="start"
    android:src="@drawable/background" />

1 个答案:

答案 0 :(得分:1)

可能导致此问题的可能性很小。您要么为图像设置了边距(边距顶部和底部)。或者父布局有一个填充(也是顶部和底部)。

您只需要删除此填充或边距,以便视图填充父布局。

还有另一种可能性,通过查看您的代码 - 可能是问题。您可能希望使用android:background属性而不是android:src