0
我與Android用戶界面摔跤,試圖創建一個表格佈局,每行有兩個按鈕的兩行。我希望每個按鈕佔用一排空間的50%。但是,無論我將layout_width和layout_height設置爲何,我總是會在每一行中獲得兩個精簡按鈕。表佈局擋板
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:id="@+id/tablelayout" >
<TableRow>
<Button
android:id="@+id/btn_one"
android:tag="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text=""/>
<Button
android:id="@+id/btn_two"
android:tag="2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text=""
android:padding="0px"/>
</TableRow>
<TableRow>
<Button
android:id="@+id/btn_three"
android:tag="3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text=""/>
<Button
android:id="@+id/btn_four"
android:tag="4"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text=""/>
</TableRow>
</TableLayout>
</LinearLayout>