我有一个水平线性布局,包含两个布局。我希望正确的布局与内容一样宽(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>
左侧的相对布局占用了所有空间(屏幕变为绿色)。我希望相对布局采用宽度,该宽度来自线性布局,因此您可以在布局中看到按钮。