1

我的申请有问题。我有一张在整个屏幕上显示的图像(ImageView),其中包含 xml 中的代码:

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

我的问题是图像以图像视图本身为中心。它需要居中,如下图所示:

在此处输入图像描述 左边的图像是我所拥有的,中间的图像。右边是我想要的,图像应该在整个布局中,我需要将我的图像设置为 match_parent 以使其填充为背景(我没有将其设置为背景,因为它会被拉伸)。

我希望我遗漏了一些明显的东西!感谢您提前帮助我!

4

1 回答 1

1
<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/achtergrond"
    android:scaleType="fitStart" />
于 2013-05-24T18:07:01.783 回答