現在、私の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>
そして、すでに作成したボタンのすぐ下にボタンを追加したいと思います。別のボタンを追加しようとしましたが、同じ行に配置するだけです。それはLinearLayoutですか?もしそうなら、どうすればこれを修正できますか?
編集: 明確化、EditBox と Button を 1 行に配置し、その後に別の EditBox と Button を配置します。