在我的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%,第二个布局填充剩余空间。
提前致谢!
答案 0 :(得分:4)
在线性布局中制作两个布局,并为每个布局layout_weight
0.5
。然后在每个视图组中添加特征android:layout_width="wrap_content"
。就这样 -
<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">
<LinearLayout
android:layout_weight="0.5"
......
<include layout="@layout/layout1"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
</LinearLayout>
<LinearLayout
android:layout_weight="0.5"
......
<include layout="@layout/layout2"
android:layout_width="0dip"
android:layout_weight="0.5"
android:layout_height="match_parent" />
<LinearLayout/>