第一个图像是我的应用程序在将 EditText 放入表格行之前的外观。在我把它变成一个表格行之后,下面的行被调整了大小,即使它们都具有相同的重量。但是,我希望 EditText 位于表格行中,所以我可以再次制作它吗?
原始xml布局文件:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/TableLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="5dp"
android:shrinkColumns="30"
android:stretchColumns="20" >
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="numberSigned"
android:layout_weight="3">
<requestFocus/>
</EditText>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button7"
style="?android:attr/buttonStyleSmall"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="enterNum"
android:text="@string/num7" />
<Button
android:id="@+id/button8"
style="?android:attr/buttonStyleSmall"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="enterNum"
android:text="@string/num8" />
<Button
android:id="@+id/button9"
style="?android:attr/buttonStyleSmall"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="enterNum"
android:text="@string/num9" />
<Button
android:id="@+id/buttonDiv"
style="?android:attr/buttonStyleSmall"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="enterOp"
android:text="@string/div" />
</TableRow>
更改代码:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/TableLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="5dp"
android:shrinkColumns="30"
android:stretchColumns="20" >
<TableRow
android:id="@+id/tableRow