任何蓝色线条显示的是背景图像。名字是蓝色背景。它位于gridview 和bottomheader 后面。
请告诉如何删除这个蓝线空间。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bluebackground" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="48dp"
android:src="@drawable/blackheader" />
<EditText
android:id="@+id/etxsearch"
android:layout_width="300dp"
android:layout_height="30dp"
android:layout_alignParentLeft="true"
android:layout_alignTop="@+id/imageView1"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:background="@drawable/searchtext"
android:textSize="18dp" />
<GridView
android:id="@+id/gvMain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/img_bottomheader"
android:layout_below="@+id/imageView1"
android:background="#000000"
android:horizontalSpacing="1dp"
android:numColumns="3"
android:scrollbars="vertical"
android:smoothScrollbar="true"
android:verticalSpacing="1dp" />
<ImageView
android:id="@+id/img_bottomheader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:src="@drawable/bottom" />
</RelativeLayout>
空间显示在蓝色背景后面。