old/API_Demo

Views_Layout_Table Layout_Empty Cells

jazzlife 2010. 4. 26. 12:22

[table_layout_2.xml]

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TableRow>
        <Button
            android:text="@string/table_layout_2_open" />
        <TextView
            android:text="@string/table_layout_2_path_1"
            android:padding="3dip" />
    </TableRow>

    <TableRow>
        <Button
            android:text="@string/table_layout_2_save_all"/>
    </TableRow>

    <TableRow>
        <Button
            android:text="@string/table_layout_2_save"
            android:visibility="invisible" />
        <TextView
            android:text="@string/table_layout_2_path_2"
            android:padding="3dip" />
    </TableRow>

</TableLayout>