所以我正在尝试使用表格布局为我的片段创建一个带有提交按钮的教科书,但问题是教科书正在变成按钮的大小。它没有填充宽度
<?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"
android:orientation="horizontal">
<TableRow
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textUri" />
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button_as"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="As" />
</TableRow>
</TableLayout>
我做错了什么?
答案 0 :(得分:1)
目前,整个列的宽度由后续Button的宽度定义。这是因为Button是列中最宽的。
在TableLayout
元素中,您希望通过声明android:stretchColumns
将第一列(索引0)标记为可伸缩。
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:stretchColumns="0">