这是我的布局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视图非常小 - 我认为尽可能小。有没有办法让它们尽可能宽?
答案 0 :(得分:3)
使tablelayout的第二列可伸缩:
android:stretchColumns="1"
希望这有效
答案 1 :(得分:0)
使其宽度为fill_parent
<EditText android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="numberSigned"/>