现在我的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在一行中,然后是另一个EditBox和Button。
答案 0 :(得分:1)
<RelativeLayout 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"
>
<Button
android:id="@+id/tableButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="@string/copy"
android:onClick="copy"/>
<EditText
android:id="@+id/table1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:editable="false"
android:layout_toLeftOf="@id/tableButton"
android:hint="@string/table"
android:text="@string/table"
/>
<Button
android:id="@+id/secondButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tableButton"/>
<EditText
android:id="@+id/table2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:editable="false"
android:layout_bottom="@id/table1"
android:hint="@string/table"
android:text="@string/table"
/>
</RelativeLayout>
答案 1 :(得分:1)
这就是您所需要的,并复制整个内部LinearLayout以添加更多行:
<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="vertical" >
<!-- Copy from here -->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@+id/table"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
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:onClick="copy"
android:text="@string/copy" />
</LinearLayout>
<!-- To herel, and paste under -->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@id/table"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
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:onClick="copy"
android:text="@string/copy" />
</LinearLayout>
</LinearLayout>
至于使用代码执行此操作,只有当您不知道总共需要多少时,否则,请使用XML。
答案 2 :(得分:0)
尝试更改
<Button
android:id="@+id/tableButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/copy"
android:onClick="copy"/>
这样的事情
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
<Button
android:id="@+id/tableButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/copy"
android:onClick="copy"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
.../>
</LinearLayout>
如果您希望第一个按钮与编辑框具有相同的高度,则需要使用Tablelayout。
答案 3 :(得分:0)
试试这个
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
<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:layout_below="@+id/table
android:text="@string/copy"
android:onClick="copy"/>
<Button
android:id="@+id/button2"
android:layout_below="@+id/tableButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
.../>
</LinearLayout>
答案 4 :(得分:0)
<?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:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@+id/table"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
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:onClick="copy"
android:text="@string/copy" />
</LinearLayout>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="copy"
android:text="@string/copy" />
</LinearLayout>