私は次の定義を持っています:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/leftContainer"
android:layout_weight="0.8">
<TableLayout
android:id="@+id/drinksTable"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:shrinkColumns="*"
android:stretchColumns="*"
android:padding="0dp" />
<TableLayout
android:id="@+id/itemsTable"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:shrinkColumns="*"
android:stretchColumns="*"
android:padding="0dp"
android:layout_alignParentBottom="true" />
</RelativeLayout>
両方のテーブルレイアウトはプログラムで作成されます。
2番目のテーブルを最初のテーブルの真下に表示したいのですが、私ができる最善の方法は、(alignParentBottomを使用して)好きではないレイアウトの下部に配置することです。
どうすればitemsTable
真下に表示させることができdrinksTable
ますか?