Skip to content

Instantly share code, notes, and snippets.

@agiletalk
Created April 13, 2011 10:24
Show Gist options
  • Save agiletalk/917323 to your computer and use it in GitHub Desktop.
Save agiletalk/917323 to your computer and use it in GitHub Desktop.
[예제] 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="wrap_content"
>
<TableRow>
<TextView android:text="국어" android:textSize="15pt" android:padding="10px" />
<TextView android:text="영어" android:textSize="15pt" android:padding="10px" />
<TextView android:text="수학" android:textSize="15pt" android:padding="10px" />
</TableRow>
<TableRow>
<TextView android:text="88" android:textSize="15pt" android:padding="10px" />
<TextView android:text="92" android:textSize="15pt" android:padding="10px" />
<TextView android:text="76" android:textSize="15pt" android:padding="10px" />
</TableRow>
</TableLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment