这是我的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 个“行”必须共享屏幕的高度 - 但还有一个额外的:当我将第三行 (llRow3) 可见性设置为 GONE 时,只有 row1 和 row2 必须共享屏幕高度。
怎么可能做到这一点?