我在我的Android應用程序佈局如下:如何在Android中擴展TableLayout的中間TableRow?
<?xml version="1.0" encoding="utf-8"?>
<TableLayout android:id="@+id/widget41"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical">
<tablerow>
<Button android:id="@+id/button_when" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:padding="10px"
android:text="When">
</Button>
</tablerow>
<tablerow>
<EditText android:id="@+id/text_description" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:padding="10px"
android:text="What happened?" android:textSize="18sp">
</EditText>
</tablerow>
<tablerow>
<Button android:id="@+id/button_location" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:padding="10px"
android:text="Location">
</Button>
</tablerow>
我怎樣才能讓我的佈局,以便在中間,一個用的EditText,展開以填充的整個空間屏幕沒有被第一個和第三個項目佔用?
你可能會看看我的答案。 – Martin 2011-07-28 12:22:31