1

何が間違っているのかわかりませんが、5 つのチェック ボックスを 1 つのテーブル行に配置しようとしています。行は最初のチェック ボックスの後に終了するように見え、残りの 4 つのチェック ボックスは行の外に表示されます。コードは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal" >
        <TextView  
            android:id="@+id/txtView1"  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content"  
            android:textStyle="bold"  
            android:typeface="serif"  
            android:textSize="18sp"  
            android:text="@string/start_head"  
            android:gravity="center"  
            android:layout_span="5"
            android:layout_marginTop="10dp" >

        </TextView>  
    </TableRow>

    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp" >

        <CheckBox
            android:id="@+id/chkAtm"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/atm" />

        <CheckBox
            android:id="@+id/chkGift"
            android:layout_width="wrap_content"
            android:text="@string/giftcard" />
       <CheckBox
            android:id="@+id/chkRing"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/ring" />
       <CheckBox
            android:id="@+id/chkMerchant"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/merchant" />
       <CheckBox
            android:id="@+id/chkCod"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/cod" /> 

    </TableRow>

    <TableRow
        android:id="@+id/tableRow3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal" >
        <Button
            android:id="@+id/btnRun"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:text="@string/run"
            android:layout_span="5" />

    </TableRow>


</TableLayout>
4

1 に答える 1