我的设计师不断在我的图像周围添加一些填充物。 我希望图像贴在顶部,并填写屏幕的宽度。 以下是设计师的截图:http://imgur.com/zsck8
这是我的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" />
答案 0 :(得分:10)
看起来图像大于屏幕宽度,因此在调整大小后会缩小图像。尝试将android:adjustViewBounds="true"
添加到ImageView
。
答案 1 :(得分:5)
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:id="@+id/imageView"
android:cropToPadding="false"
android:scaleType="fitXY" />
当我使用ImageView for Splashscreen时经验相同,这对我有用。
答案 2 :(得分:-1)
您可能只想将其添加到图像视图中。 它解决了我的问题。
android:paddingVertical="0dp"
android:paddingHorizontal="0dp"