在我的 LinearLayout 中,我有两个子 ViewGroups,基本上我希望它们每个占用 50% 的空间(并且已经完成),但也有可能这些 ViewGroups 之一的内容远小于 50%,在这种情况下,有没有办法让第二个视图匹配剩余空间?
现在我的布局如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:orientation="horizontal"
android:weightSum="1">
<include layout="@layout/layout1"
android:layout_width="0dip"
android:layout_weight="0.5"
android:layout_height="match_parent" />
<include layout="@layout/layout2"
android:layout_width="0dip"
android:layout_weight="0.5"
android:layout_height="match_parent" />
而我想要实现的是:一种布局wrap_content,但不超过50%,第二种布局填满剩余空间。
提前致谢!