-1

このコードの間違いは何ですか。このアプローチ方法が正しいかどうか教えてください。

リスト項目をロードすると、リストが画面全体ではなく検索バーまで拡大されます。私にアドバイスしてください。

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent" 
    android:layout_width="fill_parent"
    android:background="#000044">

        <TableRow>
             <EditText 
                 android:id="@+id/txtUserName" 
                 android:width="270dp" />

             <Button
                 android:id="@+id/Search_button"
                 android:width="50dp" /> 
                 />
        </TableRow>

        <TableRow>
            <ListView
                android:id="@+id/Service_name_list"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"/>
        </TableRow>

    </TableLayout>

また、これはすべての画面で機能するかどうかも教えてください。

4

2 に答える 2

0

1 つのセルが 2 つのセルにまたがるようにするには、layout_span を追加します。

<ListView
    android:id="@+id/Service_name_list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_span="2"/>
于 2012-04-29T14:28:43.540 に答える
0

2 行目を次のように変更します。

    <TableRow android:layout_span="2">
        <ListView
        android:id="@+id/Service_name_list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>
    </TableRow>

唯一変更されたのは、HTML colspan と同じ android:layout_span="2" です。

于 2012-04-29T09:33:11.080 に答える