これは簡単に思えますが、Google 検索の忍耐力を使い果たしました。
RelativeLayout
2 つの subが並んでいるLinearLayout
があり、2 つの LinearLayout の高さに関係なく、両方が親を垂直に埋めるようにします。これは行として使用されており、 @id/item_leftListView
の下のコンテンツは通常、右側のものよりも短くなっています。
背景のドローアブルは行全体を埋めません。
両側を埋めるためのアイデアはありますか?
<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>