3

在我的 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%,第二种布局填满剩余空间。

提前致谢!

4

1 回答 1

4

在您的线性布局中制作两个布局,并为每个布局指定layout_weight. 0.5然后在其中的每一个中放置一个带有 trait 的视图组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/>
于 2012-12-01T20:01:28.720 回答