Как сделать так, чтобы ширина таблицы была достаточно большой, чтобы соответствовать ее содержимому - PullRequest
0 голосов
/ 13 декабря 2018
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/table1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:stretchColumns="1">

    <TableRow>
        <EditText
            android:id="@+id/editText"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_marginStart="16dp"
            android:layout_marginTop="68dp"
            android:ems="10"
            android:paddingLeft="10dp"
            android:textSize="40dp"
            android:text="" />
        <EditText
            android:id="@+id/editText1"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_marginStart="16dp"
            android:layout_marginTop="68dp"
            android:ems="10"
            android:paddingLeft="10dp"
            android:textSize="40dp"
            android:text="" />
    </TableRow>   
</TableLayout>

Это мой xml.когда я запускаю приложение, второе поле редактирования просто игнорирует его размер и заполняет всю ширину, чтобы достичь границы экрана.Как я могу исправить размеры полей редактирования в строке таблицы и отцентрировать их следующим образом: enter image description here

1 Ответ

0 голосов
/ 13 декабря 2018

Вам необходимо изменить stretch column поле.После использования * вместо 1 разделит взгляды равномерно.Сделайте что-то вроде этого:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/table1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:stretchColumns="*">

    <TableRow>

        <EditText
            android:id="@+id/editText"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_marginStart="16dp"
            android:layout_marginTop="68dp"
            android:ems="10"
            android:paddingLeft="10dp"
            android:text=""
            android:textSize="40dp" />

        <EditText
            android:id="@+id/editText1"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_marginStart="16dp"
            android:layout_marginTop="68dp"
            android:ems="10"
            android:paddingLeft="10dp"
            android:textSize="40dp"
            android:text="" />
    </TableRow>
</TableLayout>
...