将布局与另一个布局的子项对齐

时间:2016-04-22 10:08:22

标签: android android-layout android-relativelayout

有没有办法将布局与另一个布局的子项对齐? 我创建了一个例子:

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

    <RelativeLayout 
        android:id="@+id/rel1"
        android:layout_width="200dp"
        android:layout_height="match_parent"
        android:background="#7F000000"
        android:gravity="center"
        android:layout_alignParentEnd="true">
        <View 
            android:id="@+id/view"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_marginBottom="5dp"
            android:background="#00FF00"/>
        <View 
            android:id="@+id/view2"
            android:layout_width="50dp"
            android:layout_below="@+id/view"
            android:layout_height="50dp"
            android:background="#00FF00"/>
    </RelativeLayout>

    <RelativeLayout 
        android:id="@+id/rel2"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#7F0000FF"
        android:layout_alignTop="@+id/view2">

    </RelativeLayout>
</RelativeLayout>

在这里,我尝试将RelativeLayout rel2的顶部与view2的顶部对齐,但RelativeLayout不允许这样做。

我有:

enter image description here

我想:

enter image description here

感谢。

4 个答案:

答案 0 :(得分:1)

你不能。

  

给定RelativeLayout中的布局约束应该引用其他   同一相对布局内的视图(但不是本身!)

答案 1 :(得分:0)

我很确定您无法从xml文件中执行此操作,但我确信您可以在运行时设置LayoutParams的{​​{1}}以匹配{{1} } rel2,并将根布局设置为LayoutParams

答案 2 :(得分:0)

LinearLayout 作为父级,而不是在Child中使用两个 RelativeLayout

LinearLayout 中的android:weightSumandroid:orientation一起使用。

现在,检查此xml,您将获得所需的输出

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:weightSum="2">

    <RelativeLayout
        android:id="@+id/rel3"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1.4"
        android:gravity="center">

        <RelativeLayout
            android:id="@+id/rel21"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_marginTop="55dp"
            android:background="#7F0000FF" />
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/rel1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.6"
        android:background="#7F000000"
        android:gravity="center">

        <View
            android:id="@+id/view"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="5dp"
            android:background="#00FF00" />

        <RelativeLayout
            android:id="@+id/rel2"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_below="@+id/view"
            android:background="#7F0000FF">

            <View
                android:id="@+id/view2"
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:layout_centerHorizontal="true"
                android:background="#00FF00" />
        </RelativeLayout>
    </RelativeLayout>

</LinearLayout>

enter image description here

答案 3 :(得分:0)

dynamicList