Как я могу растянуть представления EditText в Android? - PullRequest
0 голосов
/ 23 декабря 2010

Это мой XML-файл макета:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="fill_parent"
             android:layout_height="fill_parent">
    <TableRow android:layout_width="wrap_content"
              android:layout_height="wrap_content">
        <TextView android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:text="One"/>
        <EditText android:layout_width="wrap_content"
                  android:layout_height="wrap_content"/>
    </TableRow>    
    <TableRow android:layout_width="fill_parent"
              android:layout_height="wrap_content">
        <TextView android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:text="Two"/>
        <EditText android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:inputType="numberSigned"/>
    </TableRow>
</TableLayout>

Проблема, однако, заключается в том, что представления EditText смехотворно малы - настолько малы, насколько я считаю. Есть ли способ сделать их максимально широкими?

Ответы [ 2 ]

3 голосов
/ 23 декабря 2010

делает второй столбец вашей таблицы растягиваемым:

android:stretchColumns="1"

Надеюсь, это сработает

0 голосов
/ 23 декабря 2010

Сделать их шириной fill_parent

<EditText android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:inputType="numberSigned"/>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...