无法将列表视图放在文本视图下

时间:2016-11-21 13:39:23

标签: android layout

这是我现在的相对布局: http://prntscr.com/d9yure

我想要的只是deleteListdeleteUsersTxt之下,但它并不让我。它只允许我把它放在邀请名单下面。我试图添加android:layout_below="@+id/deleteUsersTxt",但它只是让它消失了。

这是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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="meet.projectoklahoma.Activities.CreateEventActivity">


<ListView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/invitaionsList"

    android:layout_above="@id/deleteUsersTxt"
    android:choiceMode="multipleChoice"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_below="@+id/addUsersTxt" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/other"
    android:id="@+id/otherButton"
    android:onClick="setDate"
    android:layout_alignTop="@+id/tomorrowButton"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:text="@string/which_day"
    android:id="@+id/whichDayTxt"
    android:layout_below="@+id/eventNameTextBox"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/tomorrow"
    android:id="@+id/tomorrowButton"
    android:onClick="tomorrow"
    android:layout_alignTop="@+id/todayButton"
    android:layout_toRightOf="@+id/otherButton"
    android:layout_toEndOf="@+id/otherButton" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceSmall"
    android:text="whichDay"
    android:id="@+id/dayTxt"
    android:layout_below="@+id/whichDayTxt"
    android:layout_alignRight="@+id/whichDayTxt"
    android:layout_alignEnd="@+id/whichDayTxt" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceSmall"
    android:text="date"
    android:id="@+id/dateTxt"
    android:layout_below="@+id/dayTxt"
    android:layout_alignRight="@+id/dayTxt"
    android:layout_alignEnd="@+id/dayTxt" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:text="@string/which_time"
    android:id="@+id/timeTxt"
    android:layout_below="@+id/dateTxt"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/choose_time"
    android:id="@+id/whichTimeBtn"
    android:layout_alignTop="@+id/timeTxt"
    android:layout_alignLeft="@+id/todayButton"
    android:layout_alignStart="@+id/todayButton"
    android:onClick="setTime"
    />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceSmall"
    android:text="whichTime"
    android:id="@+id/whichTimeTxt"
    android:layout_below="@+id/timeTxt"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:text="@string/add_users_to_event"
    android:id="@+id/addUsersTxt"
    android:layout_below="@+id/whichTimeBtn"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/today"
    android:id="@+id/todayButton"
    android:onClick="today"
    android:layout_alignBottom="@+id/dayTxt"
    android:layout_toLeftOf="@+id/timeTxt"
    android:layout_toStartOf="@+id/timeTxt" />

<EditText
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/eventNameTextBox"
    android:text="שם האירוע"

    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />

<TextView
    android:text="הסרת משתמשים מהאירוע:"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/deleteUsersTxt"
    android:layout_marginBottom="131dp"
    android:layout_above="@+id/cancelAndDeleteButton"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/delete_and_cancel"
    android:id="@+id/cancelAndDeleteButton"
    android:onClick="deleteEvent"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="סבבה"
    android:id="@+id/SaveEventButton"
    android:onClick="editEvent"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />

<ListView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/deleteList"
    android:layout_below="@+id/invitaionsList"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />

列表是否有最小空间?

2 个答案:

答案 0 :(得分:0)

这不是什么,但一切都出错了。

您可以使用LinearLayout(垂直方向)作为根布局,以方便使用。

然后,你会更容易理解。

答案 1 :(得分:0)

尝试将它们分组到LinearLayout中并将它们平分,如下所示:

<LinearLayout
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_above="@id/deleteUsersTxt"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_below="@+id/addUsersTxt"
    android:layout_height="wrap_content">

    <ListView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:id="@+id/invitaionsList"
        android:layout_weight="1"
        android:choiceMode="multipleChoice" />

    <ListView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:id="@+id/deleteList"/>

</LinearLayout>