0

現在、私の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 を配置します。

4

5 に答える 5

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 で行います。

于 2013-07-04T07:56:35.390 に答える
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>
于 2013-07-04T07:45:26.477 に答える
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>
于 2013-07-04T07:48:56.443 に答える