Как я могу установить TableLayout?

В моем приложении для Android у меня есть вид списка Expandable и кнопка в 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 ответов

Другие вопросы по тегам