我该如何设置TableLayout?

时间:2013-11-16 12:52:40

标签: android expandablelistview tablelayout

在我的Android应用程序中,我有一个可扩展列表视图和tableLayout中的按钮,但我有一个问题,表格的宽度未完全显示,我设置(android:layout_width =“match_parent”),但它不起作用,我该怎么办呢?

我的代码是:

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

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:orientation="vertical"
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             android:gravity="center_horizontal">

    <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        <ExpandableListView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/expandableListView"/>

    </TableRow>

    <TableRow
            android:id="@+id/tableRow2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        <Button
                android:id="@+id/backup"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"

                android:text="BackUp"
                android:clickable="true"/>

    </TableRow>

</TableLayout>
</LinearLayout>

0 个答案:

没有答案