0

XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<RelativeLayout
    android:id="@+id/sendToLayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:orientation="vertical"
    android:background="#292929" >
<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/editText1"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="Contacts"
    android:layout_marginTop="10dp"
    android:layout_marginRight="5dp" />


<EditText
    android:id="@+id/sendToType"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_toLeftOf="@+id/button1"
    android:ems="10"
    android:layout_margin="10dp"
    android:hint="To" />
</RelativeLayout>

<RelativeLayout
    android:id="@+id/previewlayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/sendToLayout"
    android:orientation="vertical" >

    <TextView 
        android:id="@+id/preview"
        android:text="Message Preview: "
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:textColor="#ffffff"
        android:layout_marginTop="5dp"

        />



    <RelativeLayout
        android:id="@+id/previewLayout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/preview"
        android:layout_marginTop="5dp"
        android:background="@drawable/bg"
        android:layout_above="@+id/messageLayout" >

        <TextView 
        android:id="@+id/messagePreview"
        android:text="Message Preview will be shown here"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#b5b5b5"
        />
    </RelativeLayout>

</RelativeLayout>

<RelativeLayout
    android:id="@+id/messageLayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:orientation="vertical"
    android:layout_alignParentBottom="true">
<Button
    android:id="@+id/addNumberButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/messageLayout3"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_marginTop="5dp"
    android:text="Contacts" />



<EditText
    android:id="@+id/enterMessage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_alignBottom="@+id/messageLayout3"
    android:layout_toLeftOf="@+id/addNumberButton"
    android:ems="10"
    android:layout_marginTop="5dp"
    android:hint="Message" />

</RelativeLayout>

強調表示された RelativeLayout ( @+id/previewLayout )

ここに画像の説明を入力

このRelativeLayout ( @+id/messageLayout )の先頭にのみ移動する必要があります。

ここに画像の説明を入力

しかし、それは画面/親の一番下までずっと行きます。私は何を間違えましたか?

4

2 に答える 2