0

我正在尝试设置我的 XML 布局,但由于某种原因,两者之间有很多空间。

看起来像:

在此处输入图像描述

我的 XML 看起来像:

<?xml version="1.0" encoding="utf-8"?>
<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="5dp"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:paddingTop="5dp"
    tools:context=".MainActivity"
    android:background="@drawable/bginset4" >
<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingLeft="6dp"
        android:paddingRight="6dp" >
     <TextView
        android:id="@+id/txtTheFileName"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:layout_marginBottom="0dp"
        android:layout_marginTop="8dp"
        android:textSize="14dp"
        android:textStyle="bold"
        android:textColor="#0093DD"
        android:layout_marginLeft="7dp"
        android:background="#ff0000" />
      <TextView
        android:id="@+id/tvSavedTotalToll"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:layout_marginTop="8dp"
        android:textSize="14dp"
        android:textStyle="bold"
        android:textColor="#0093DD"
        android:layout_marginLeft="7dp"
        android:background="#00ff00" />
    <EditText
        android:id="@+id/etFileContents"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="0dp"
        android:layout_marginLeft="0dp"
        android:layout_marginRight="0dp"
        android:layout_marginTop="0dp"
        android:ems="10"
        android:gravity="top"
        android:inputType="textMultiLine|textNoSuggestions"
        android:lines="18"
        android:paddingLeft="6dp"
        android:scrollbars="vertical"
        android:singleLine="false"
        android:textColor="#999999"
        android:textSize="14dp"
        android:textStyle="normal" >
        <requestFocus />
    </EditText>

    <Button
        android:id="@+id/btnClose"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="0dp"
        android:layout_marginLeft="0dp"
        android:text="Close Window"
        android:textStyle="bold"
        android:textColor="#FFFFFF"
        android:shadowColor="#000000"
        android:shadowDx="1"
        android:shadowDy="1"
        android:shadowRadius="2"
        android:background="@drawable/closebutton" />
    </LinearLayout>
</RelativeLayout>

我添加了背景颜色来区分。我不知道为什么红色和绿色背景的物体下面有这么多空间。知道如何解决这个问题吗?

我只是想输入行程名称,然后是一个小空间,然后是总通行费金额,然后是底部的按钮,中间留有任何空间来存储多行编辑文本。

请帮忙。

4

1 回答 1

2

android:layout_marginTop="8dp"你的TextView's:txtTheFileNametvSavedTotalToll. 这就是空间更大的原因。

于 2013-08-08T02:52:02.700 回答