안드로이드 화면 TableRow 정렬 방법입니다.
소스 부분입니다.
색으로 칠해진 부분이 핵심입니다.
----------------------------------------------------------------
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/confButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="32dp"
android:text="@string/confirm_button"
tools:context=".GameActivity" />
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:stretchColumns="*">
<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:gravity="center"
android:text="1"
android:textSize="20sp"
android:textColor="#000000">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:gravity="center"
android:text="2"
android:textSize="20sp"
android:textColor="#000000">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:gravity="center"
android:text="3"
android:textSize="20sp"
android:textColor="#000000">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:gravity="center"
android:text="4"
android:textSize="20sp"
android:textColor="#000000">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:gravity="center"
android:text="5"
android:textSize="20sp"
android:textColor="#000000">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:gravity="center"
android:text="6"
android:textSize="20sp"
android:textColor="#000000">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:gravity="center"
android:text="7"
android:textSize="20sp"
android:textColor="#000000">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:gravity="center"
android:text="8"
android:textSize="20sp"
android:textColor="#000000">
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginLeft="1dp"
android:gravity="center"
android:text="9"
android:textSize="20sp"
android:textColor="#000000">
</TextView>
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow5"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow6"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
</TableLayout>
</RelativeLayout>
----------------------------------------------
안드로이드 화면 정렬 실행 결과입니다.
'프로그램 > ANDROID' 카테고리의 다른 글
안드로이드 TextView setBackgroundColor / 안드로이드 테이블 내용 글씨 색 주는 방법 (0) | 2014.01.30 |
---|---|
java android tablelayout /안드로이드 자바에서 화면으로 값전달 (0) | 2014.01.29 |
안드로이드 어플 개발 / 안드로이드 페이지 이동 방법/안드로이드 화면 이동 방법 (0) | 2014.01.25 |
[오류] Failed to allocate memory: 8 (0) | 2013.10.27 |
안드로이드 개발 환경 구글 안드로이드 ADT BUNDLE 이용하여 구축하기1 (0) | 2013.10.23 |