可能重複:
What is the equivalent of 「colspan」 in an Android TableLayout?與TableLayout跨越列
它說,在文檔中的TableLayout 「細胞可以跨越列,因爲它們可以在HTML」但是,我找不到任何方式來這樣做。
具體來說,我有一列兩列,另一列有一列。我想要一列行跨越整個表。看起來很簡單,但我看不到它。
可能重複:
What is the equivalent of 「colspan」 in an Android TableLayout?與TableLayout跨越列
它說,在文檔中的TableLayout 「細胞可以跨越列,因爲它們可以在HTML」但是,我找不到任何方式來這樣做。
具體來說,我有一列兩列,另一列有一列。我想要一列行跨越整個表。看起來很簡單,但我看不到它。
添加android:layout_span =「3」以跨越3列。 例如:
<TableRow>
<Button android:id="@+id/item_id"
android:layout_span="2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="item text" />
</TableRow>
稀釋,它就在那裏,在TableRow.LayoutParams:http://developer.android.com/引用/ android/widget/TableRow.LayoutParams.html –
查找這些佈局XML文件非常棘手 - 容易忘記android:layout_ *屬性位於單獨的javadoc中。 –
-1,該按鈕的文字太小時,此解決方案不起作用。例如,當文本只是一個像計算器應用程序中的「+」時,該按鈕將不會增長,直到它覆蓋兩列(如果這兩列比按鈕更寬而沒有columnSpan)。 – Zelphir
android:layout_span訣竅。
例如:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow>
<TextView android:id="@+id/info"
android:layout_span="2"
android:text="some text"
android:padding="3dip"
android:layout_gravity="center_horizontal" />
</TableRow>
<TableRow>
<TextView android:text="some other text"
android:padding="3dip" />
<TextView android:text="more text"
android:padding="3dip" />
</TableRow>
</TableLayout>
重複的:http://stackoverflow.com/q/2710793/165674 –