ここに私のxmlがあります:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout android:layout_alignParentTop="true"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/llRow1" />
<LinearLayout android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_below="@+id/llRow1"
android:id="@+id/llRow2" />
<LinearLayout android:layout_alignParentBottom="true"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/llRow3" >
</RelativeLayout>
私が欲しいもの: - これらの 3 つの「行」は画面の高さを共有する必要がありますが、1 つ余分に: 3 番目の行 (llRow3) の可視性を GONE に設定すると、行 1 と行 2 だけが画面の高さを共有する必要があります。
どうすればこれを行うことができますか?