Android: match_parent 的布局应在 space 左侧或共享

Android: layout with match_parent shall take the space left or share

我有一个水平线性布局,包含两个布局。我希望 right 布局与内容 (wrap_content) 一样宽。 left 布局应填充剩余 space.

我尝试在左侧布局(相对布局)上使用 "match_parent" 并在右侧布局(线性布局)上使用 "wrap_content",但左侧布局采用 all space.

如何解决这个问题,左边的布局只采用 space,它仍然存在,而不是所有内容。就像让正确的布局先行space。

编辑:: 抱歉,我想 post 一张图片,但是不能,这是代码:

<?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>

左侧的Relative Layout 占用了所有space(屏幕变为绿色)。 我希望相对布局采用线性布局的宽度,这样您就可以在布局中看到按钮。

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

而不是 android:layout_width="match_parent"
<?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>