본문 바로가기

개발도구/aOS - 안드로이드 개발

TableLayout

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
 <TableRow>
  <TextView
   android:text="수학"
   android:padding="10px"
  />
  <TextView
   android:text="영어"
   android:padding="10px"
  />
  <TextView
   android:text="국어"
   android:padding="10px"
  /> 
 </TableRow>
 <TableRow>
  <TextView
   android:text="88"
   android:padding="10px"
  />
  <TextView
   android:text="22"
   android:padding="10px"
  />
  <TextView
   android:text="56"
   android:padding="10px"
  /> 
 </TableRow>
</TableLayout>

'개발도구 > aOS - 안드로이드 개발' 카테고리의 다른 글

Layout 고급  (0) 2011.05.17
AbsoulteLayout  (0) 2011.05.17
RelativeLayout  (0) 2011.05.17
Android intent get 값 받아 오기  (0) 2011.05.16
Android Log 문자, 숫자 찍어보기!  (0) 2011.05.16