如何使布局具有相同的高度?

时间:2013-04-10 07:09:48

标签: android layout

下面是我的布局xml代码:

        <LinearLayout
            android:id="@+id/c"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <RelativeLayout
                android:id="@+id/a"
                android:layout_width="match_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:orientation="vertical" >
            </RelativeLayout>

            <RelativeLayout
                android:id="@+id/b"
                android:layout_width="match_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:orientation="vertical" >
            </RelativeLayout>
        </LinearLayout>

我在LinearLayout c中有2个RelativeLayout,a和b a和b可以有不同的高度 我想让两个RelativeLayout的高度与最高的相同 我该如何实现它?

5 个答案:

答案 0 :(得分:2)

将布局c中的属性layout_weightsum = 2放入 为布局a,b添加layout_weight为1,并删除a,b

的layout_height属性

答案 1 :(得分:1)

试试吧

<LinearLayout
        android:id="@+id/c"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:weightSum="2" >

        <RelativeLayout
        android:id="@+id/a"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical" >
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/b"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical" >
    </RelativeLayout>
    </LinearLayout>

希望得到帮助

答案 2 :(得分:1)

  1. 将父LinearLayout高度更改为match_parent。给予wrap_content会修正LinearLayout高度以适应其子视图的大小。

  2. RelativeLayout身高更改为0dip

       

       

答案 3 :(得分:1)

试试这个,它会自动为子布局分配相等的空间。

<LinearLayout

            android:id="@+id/c"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >

            <RelativeLayout
                android:id="@+id/a"
                android:layout_width="match_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:orientation="vertical" >
            </RelativeLayout>

            <RelativeLayout
                android:id="@+id/b"
                android:layout_width="match_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:orientation="vertical" >
            </RelativeLayout>
        </LinearLayout>

答案 4 :(得分:1)

使用表格布局自动调整

<TableLayout
       xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="fill_parent"
       android:layout_height="match_parent"
       android:padding="5dp"
       android:shrinkColumns="1"
       android:stretchColumns="1" >

       <TableRow android:id="@+id/tableRow1" >

           <TextView
               android:id="@+id/textView1"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:text="Main Status             "
               android:textAppearance="?android:attr/textAppearanceMedium" />

           <Button
               android:id="@+id/retentionMainStatus"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:text="CLICK ME" />
</TableRow>
</TableLayout>