在做android界面设计时如果使用到TableLayout布局即表格布局,要想让界面中的控件填满整个屏幕除了要设置TableLayout的属性
android:layout_width="fill_parent"
android:layout_height="fill_parent"
还需要设置TableRow的属性为
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
注意这里的android:layout_weight="1"一定不能忘了,否则子控件的android:layout_height="fill_parent"是不起作用的。