so I am trying to make a textbook with a submit button using the table layout for my fragment but the issue is the textbook is becoming the size of the button. It is not filling the width\[code\]<?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" androidrientation="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>\[/code\]what am I doing wrong?