现在我的 xml 看起来像这样:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<EditText
android:id="@+id/table"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:editable="false"
android:hint="@string/table"
android:text="@string/table"
/>
<Button
android:id="@+id/tableButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/copy"
android:onClick="copy"/>
</LinearLayout>
我想在我已经创建的按钮下添加一个按钮。我尝试添加另一个按钮,但它只是将它放在同一行。是线性布局吗?如果是这样,我该如何解决这个问题?
编辑:澄清,我希望我的 EditBox 和 Button 在一行中,然后是另一个 EditBox 和 Button。