Это мой 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 смехотворно малы - настолько малы, насколько я считаю. Есть ли способ сделать их максимально широкими?