5

我的设计师不断在我的图像周围添加一点填充。我希望将图像粘贴在顶部并填充屏幕的宽度。

这是设计师的截图:

截屏

这是我的 XML 代码:

<ImageView
    android:id="@+id/markertap_header"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/header_bootsverleih_xhdpi" />
4

3 回答 3

11

看起来图像大于屏幕宽度,因此在调整大小后会缩小。尝试添加android:adjustViewBounds="true"到您的ImageView.

于 2012-12-04T17:41:59.740 回答
10
 <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:adjustViewBounds="true"
        android:id="@+id/imageView"
        android:cropToPadding="false"
        android:scaleType="fitXY" />

Experienced the same when I used an ImageView for Splashscreen, this^ worked for me.

于 2016-01-13T15:02:08.953 回答
-1

您可能只想将它添加到您的图像视图中。它解决了我的问题。

android:paddingVertical="0dp"
android:paddingHorizontal="0dp"
于 2020-04-04T22:23:38.883 回答