两个RelativeLayouts,高度相同

时间:2015-08-04 16:47:54

标签: android xml height relativelayout

我有两个RelativeLayout个(彼此相邻) 白色RelativeLayout和红色{。}。

随着白方文字的数量增加,我希望红方增长。

1 个答案:

答案 0 :(得分:0)

您是否尝试将红色RelativeLayout android:layout_alignBottom 设置为白色RelativeLayout的ID?

我不确定你的文字是如何输入白色布局的,但是如果你正在处理白色RelativeLayout内部的EditText,那么这应该确保红色边总是与白色一样高添加新文本会导致白边高度增长。

有些事情如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:paddingBottom="@dimen/activity_vertical_margin"
            android:paddingLeft="@dimen/activity_horizontal_margin"
            android:paddingRight="@dimen/activity_horizontal_margin"
            android:paddingTop="@dimen/activity_vertical_margin">

    <RelativeLayout
        android:id="@+id/red"
        android:layout_width="200dp"
        android:layout_height="match_parent"
        android:layout_alignBottom="@+id/white"
        android:background="#FF0000">
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/white"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:layout_toEndOf="@id/red"
        android:layout_toRightOf="@id/red"
        android:background="#FFFFFF">

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:singleLine="false"
            />

    </RelativeLayout>

</RelativeLayout>