我有两个RelativeLayout
个(彼此相邻)
白色RelativeLayout
和红色{。}。
随着白方文字的数量增加,我希望红方增长。
答案 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>