1. 테이블레이아웃

: 위젯을 표 형태로 배치할 때 활용

- 예시

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TableRow>
        <Button
            android:text="1"/>

        <Button
            android:layout_span="2"
            android:text="2"/>

        <Button
            android:text="3"/>
    </TableRow>

    <TableRow>
        <Button
            android:layout_column="1"
            android:text="4"/>

        <Button
            android:text="5"/>

        <Button
            android:text="6"/>
    </TableRow>

</TableLayout>

+ Recent posts