使用“match_parent”将图像对齐到顶部

时间:2013-05-24 18:05:42

标签: android android-layout android-imageview

我的申请有问题。我有一个遍及整个屏幕的图像(ImageView),这个代码用xml:

    <ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentRight="true"
    android:src="@drawable/achtergrond"
    android:scaleType="fitCenter" />

我的问题是图像在imageview本身居中。它需要居中,如下图所示:

enter image description here 左边的图像是我的,图像在中间。右边是我想要的,图像应该在整个布局中,我需要将我的图像设置为match_parent以使其填充为背景(我没有将其设置为背景,因为它会被拉伸)。

我希望我错过了一些明显的东西!谢谢你提前帮助我!

1 个答案:

答案 0 :(得分:1)

<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/achtergrond"
    android:scaleType="fitStart" />