2013年10月25日 星期五

TableLayout

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:stretchColumns="0,1,2"
    >
<TableRow>
<Button
    android:id="@+id/Button1"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Button1"
    />
<Button
    android:id="@+id/Button2"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Button2"
    android:layout_span="2"
    />
</TableRow>
<TableRow>
<Button
    android:id="@+id/Button3"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Button3"
    />
 <Button
    android:id="@+id/Button4"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Button4"
    />
   <Button
    android:id="@+id/Button5"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Button5"
    />
</TableRow>
</TableLayout>

沒有留言:

張貼留言