这段代码有什么问题?为什么按钮不在此表行中?
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/str1"
/>
<EditText
android:id="@+id/id1"
android:layout_width="70dp"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/id2"
android:layout_width="wrap_content"
android:layout_height="65dp"
android:text="@string/str2"
android:gravity="right"/>
</TableRow>
</TableLayout>