-1

まず、ここに私の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="horizontal"
              android:background="@android:color/white">

    <LinearLayout [...]
                  android:layout_above"@+id/test">
    </LinearLayout>

    <LinearLayout [...]>

        <LinearLayout [...]
                      android:id="@+id/test"/>

    </LinearLayout>
</RelativeLayout>

このxmlは機能しません...

それを行うオプションはありますか?パラメータを別のビューの中にあるビューに設定しandroid:layout_aboveますか?

4

1 に答える 1

1

私はあなたのコードを少し修正しました..これを試してください

<?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="horizontal"
              android:background="@android:color/white">

    <LinearLayout [...]
                      android:id="@+id/test">
    </LinearLayout>

    <LinearLayout [...]
                  android:layout_below"@+id/test">

        <LinearLayout [...]/>

    </LinearLayout>
</RelativeLayout>
于 2012-12-04T14:22:23.503 に答える