我似乎无法将 EditText 的宽度设置为 wrap_content。我的意思是让 EditTexts 的宽度与其中的文本/提示的大小相同
这是我的 XML 的片段
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/tableLayout"
android:background="#FFF"
android:padding="5dp"
android:stretchColumns="1,2,3" >
<TableRow
android:id="@+id/tableRow0"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/tvBill"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Bill Total" />
<EditText
android:id="@+id/etBill"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:hint="0.00"
android:textSize="14sp" >
<requestFocus />
</EditText>
</TableRow>
...
</TableLayout>
因为我是新来的,所以我不能发布图片所以这里是一个布局编辑器