테이블 레이아웃
Posted by Albert 4796Day 11Hour 50Min 58Sec ago [2012-03-03]
테이블 레이아웃은 단어에서 알수 있는 것처럼 흔히 사용하는 표나 엑셀 시트와 같은 형태로화면을 구성하는 레이아웃입니다. ^^
실행화면
소스
==============================================================
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="1"
>
android:text="이름 : "
android:textSize="24dp"
android:padding="10px"
/>
android:text="Albert"
android:textSize="24dp"
android:gravity="left"
android:padding="10px"
/>
android:text="나이 : "
android:textSize="24dp"
android:padding="10px"
/>
android:text="20"
android:textSize="24dp"
android:gravity="left"
android:padding="10px"
/>