본문 바로가기

Android

테이블 레이아웃 (Table Layout)

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/TableLayout1"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:paddingBottom="@dimen/activity_vertical_margin"

    android:paddingLeft="@dimen/activity_horizontal_margin"

    android:paddingRight="@dimen/activity_horizontal_margin"

    android:paddingTop="@dimen/activity_vertical_margin"

    tools:context=".MainActivity" >

 

    <TableRow>

 

        <TextView

           android:textSize="30sp"

            android:text="국어"/>

       

        <TextView

           android:textSize="30sp"

            android:text="영어"/>

       

        <TextView

            android:textSize="30sp"

            android:text="수학"/>

       

    </TableRow>

   

        <TableRow>

 

        <TextView

        android:textSize="30sp"

            android:text="88"/>

       

        <TextView

           android:textSize="30sp"

            android:text="92"/>

       

        <TextView

       android:textSize="30sp"

            android:text="76"/>

       

    </TableRow>

 

</TableLayout>




'Android' 카테고리의 다른 글

레이아웃 관리 - 페이지 중첩  (0) 2013.03.27
레이아웃 관리 - 중첩  (0) 2013.03.27
프레임레이아웃(FrameLayout)  (0) 2013.03.27
RelativeLayout  (0) 2013.03.27
리니어 레이아웃 - 베이스정렬(baselineAligned)  (0) 2013.03.26