-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

更改第二行如下:

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

唯一改变的是 android:layout_span="2" 等于 HTML colspan。

于 2012-04-29T09:33:11.080 回答
0

添加一个 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 回答