DEVELOPMENT/ANDROID
[android] TableLayout 기본 폼
RAYZIE
2014. 3. 18. 11:20
- <TableLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TableRow>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="1-1"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="1-2"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="1-3"/>
- </TableRow>
- <TableRow>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="2-1"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="2-2"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="2-3"/>
- </TableRow>
- <TableRow>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="3-1"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="3-2"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="3-3"/>
- </TableRow>
- </TableLayout>