这看起来很简单,但我已经用尽了我的谷歌搜索耐心。
我有一个并排RelativeLayout
有两个 sub的,我希望它们都垂直填充父级,无论两个 LinearLayout 的高度如何。LinearLayout
这被用作ListView
一行,@id/item_left下的内容通常比右边的内容短。
背景可绘制不会填满整行。
关于使双方都充满的任何想法?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent">
<LinearLayout android:id="@+id/item_left"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:paddingRight="2dp"
android:paddingLeft="2dp"
android:background="@drawable/item_left"
android:orientation="vertical">
<TextView android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/item_left_text"
android:text="" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/item_right_background"
android:layout_toRightOf="@id/item_left">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/item_right_text"
android:text="Row1" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/item_right_text"
android:text="Row2" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/item_right_text"
android:text="Row3" />
</LinearLayout>
</RelativeLayout>