1

我有一个水平线性布局,包含两个布局。我希望正确的布局与内容一样宽(wrap_content)。左侧布局应填满剩余空间。

我尝试在左侧布局(相对布局)上使用“match_parent”,在右侧布局(线性布局)上使用“wrap_content”,但左侧布局占据了所有空间。

我该如何解决这个问题,左侧布局只占用空间,而不是所有空间。就像让正确的布局首先占据它的空间一样。

编辑::对不起,我想发布一张图片,但不能,这是代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent"
android:measureWithLargestChild="false">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#00ff27"
    android:layout_gravity="bottom">
</RelativeLayout>

<LinearLayout
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:baselineAligned="false"
    android:layout_alignParentStart="true">

    <Button
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/button"
        android:layout_alignParentStart="true" />
</LinearLayout>

左侧的相对布局占用了所有空间(屏幕变为绿色)。我希望相对布局采用宽度,该宽度来自线性布局,因此您可以在布局中看到按钮。

4

2 回答 2

1

Android 按照它们在布局文件中出现的顺序排列视图。因此,您的第一个视图会在第二个视图有机会占用任何空间之前填满所有可用空间。一种解决方法是将根布局设置为 RelativeLayout 而不是 LinearLayout,让您首先放置右侧视图。另一种是离开根 LinearLayout 并使用 layout_weight 属性。在您的第一个视图中,android:layout_width="match_parent"尝试使用android:layout_width="0dp"android:layout_weight="1"

于 2015-09-22T18:01:45.657 回答
0
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="1"
    android:orientation="horizontal">

    <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_gravity="bottom"
        android:layout_weight="1"
        android:background="#00ff27"></RelativeLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:baselineAligned="false"
        android:orientation="vertical">

        <Button
            android:id="@+id/button"
            android:layout_width="100dp"
            android:layout_height="wrap_content"
            android:text="New Button" />
    </LinearLayout>
</LinearLayout>
于 2015-09-22T18:14:38.703 回答