我有一个表格视图,里面有一些空按钮。当我运行我的应用程序时,所有的按钮都塞在了顶部。如何强制表格占据整个屏幕区域?
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/button1"
/>
</TableRow>
我的布局实际上很大,所以这只是一个示例