如何在框架布局中使用相对布局

时间:2011-01-31 10:33:12

标签: android-layout

我可以在框架布局中使用相对布局吗?在这个id =相对layout02我想使用选项android:layout_below = relativelayout01,但那不是所以我使用android:layout_marginTop =“100dip”,但这也不起作用....我想把这个relaytivelayout02放在下面相对布局01 ......怎么可能?谢谢你的帮助....

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="wrap_content"
    android:addStatesFromChildren="true" android:background="@drawable/mainscreen"
    android:id="@+id/FrameLayout00">
    <RelativeLayout android:id="@+id/RelativeLayout01"
        android:layout_width="fill_parent" android:layout_height="wrap_content">

        <TextView android:id="@+id/label" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:textColor="#FFFFFF"
            android:text="@string/title" android:textStyle="bold"
            android:textSize="26sp" android:layout_marginTop="8dip"
            android:layout_centerHorizontal="true" />


    </RelativeLayout>

    <RelativeLayout android:id="@+id/RelativeLayout02"
        android:layout_height="wrap_content" android:layout_width="96dip" android:layout_marginTop="100dip">
        <ImageButton android:layout_height="wrap_content"
            android:layout_width="wrap_content" android:background="@android:color/transparent"
            android:id="@+id/qutn" android:text="Question" android:textSize="16sp"
            android:layout_alignParentLeft="true" android:textColor="@color/white"
            android:layout_alignParentTop="true" android:layout_centerHorizontal="true"
            android:layout_marginTop="15dip" android:src="@drawable/transprent"></ImageButton>

1 个答案:

答案 0 :(得分:4)

根据我对您的问题的理解,我认为您可以将两个布局放在另一个(父)相对布局中。因此,您可以将第二个相对布局置于第一个相对布局之下。