我在填充整个屏幕的水平布局中有 3 个按钮。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:text="1" />
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:text="2"/>
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:text="3"/>
我的两个问题是:
如何在不修改宽度的情况下使右侧按钮粘在屏幕的右边缘?
如何在不修改其宽度的情况下使 2 号按钮填充按钮 1 和 3 之间的空白空间?