我正在尝试学习如何在 android 中使用表格布局,这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<!-- 3 columns -->
<TableRow
android:id="@+id/tableRow3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dip" >
<TextView
android:id="@+id/textView2"
android:text="Column 1" />
<Button
android:id="@+id/button2"
android:text="Column 2" />
<Button
android:id="@+id/button3"
android:text="Column 3" />
</TableRow>
</TableLayout>
这是结果:
我怎样才能使TableRow
宽度TableLayout
和高度适合TableLayout
高度?简而言之,我想让所有具有相同宽度的列和具有相同高度的行填充TableLayout
,这可能吗?如何?