TableRow内に TextView があります。この TextView に FILL_PARENT 幅を設定する方法はありますか?
編集: TableRow に backgroundImage がある場合、塗りつぶされません
<TableLayout android:id="@+id/tableLayout1"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TableRow android:layout_height="wrap_content" android:id="@+id/tableRow1"
android:layout_width="fill_parent" android:background="@drawable/myImage">
<TextView android:text="I wrapped!" android:id="@+id/textView1"
android:layout_width="fill_parent" android:background="@color/white"
android:layout_height="wrap_content"></TextView>
</TableRow>
</TableLayout>