我已经将图像填满了大部分屏幕,但由于某种原因,它不会覆盖底部1/2英寸的空白区域。我玩过填充底部并没有帮助
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/welcome"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="0dp"
android:adjustViewBounds="true"
android:paddingLeft="-130dp"
android:paddingRight="-330dp"
android:scaleType="fitXY"
android:scrollX="150dp"
android:scrollY="50dp"
android:src="@drawable/jobs" />
答案 0 :(得分:3)
使用&#34; android:background&#34;而不是&#34; android:src&#34;
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/Peru"
android:gravity="center"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/traffic2" />
</LinearLayout>