如何删除布局和背景之间的空间?

时间:2014-07-16 09:11:42

标签: android android-layout

我所拥有的是一个相对布局,其中包含其他两个相对布局,每个都有图像,我将每个图像作为它的相对布局的背景,但我仍然能看到图像之间的空间(布局)和整个父布局..所以我怎么能删除这个空间? 这是我的XML代码:

<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

        <RelativeLayout
            android:id="@+id/relative1"
            android:layout_width="match_parent"
            android:layout_height="150sp"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:background="@drawable/upper" >
    </RelativeLayout>

            <RelativeLayout
                android:id="@+id/relative2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentRight="true"
                android:layout_below="@+id/relative1"
                android:background="@drawable/down" >

     <ListView
         android:id="@+id/listView1"
         android:layout_width="wrap_content"
         android:layout_height="280dp"
         android:layout_alignParentLeft="true"
         android:layout_alignParentTop="true" >

    </ListView>    
    </RelativeLayout>
    </RelativeLayout>

我该如何解决这个问题?

3 个答案:

答案 0 :(得分:0)

删除顶层布局中的填充

答案 1 :(得分:0)

从主RelativeLayout删除所有填充属性。

试试这个......

<RelativeLayout 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"
    tools:context=".MainActivity" >

        <RelativeLayout
            android:id="@+id/relative1"
            android:layout_width="match_parent"
            android:layout_height="150sp"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:background="@drawable/upper" >
        </RelativeLayout>

        <RelativeLayout
                android:id="@+id/relative2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentRight="true"
                android:layout_below="@+id/relative1"
                android:background="@drawable/down" >

        <ListView
         android:id="@+id/listView1"
         android:layout_width="wrap_content"
         android:layout_height="280dp"
         android:layout_alignParentLeft="true"
         android:layout_alignParentTop="true" >


       </ListView>    
     </RelativeLayout>
</RelativeLayout>

这可能对你有帮助..

答案 2 :(得分:0)

您的相对布局定义为:

<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

在这里,您已经定义了应该始终在所有方面都有这些属性的边距:

        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"

只需删除它们就可以了。

你想要什么:

<RelativeLayout 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"
        tools:context=".MainActivity" >