Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 안드로이드개발
- 안드로이드 개발 2.0
- 아이폰 배경화면
- 하루 한마디 영어
- 구글 안드로이드 개발
- objective-c
- SKY 시리우스
- 안드로이드 개발
- 안드로이드폰
- android
- 구글 안드로이드
- 안드로이드
- 안드로이드2.0개발
- Form Stuff
- 안드로이드 바탕화면
- 인기있는 블로그 만들기
- 하루한마디영어
- 스마트폰 배경화면
- MapView
- 아이폰 바탕화면
- 스카이 안드로이드폰 시리우스
- 스카이 안드로이드폰 시리우스 K양 동영상
- 영어
- 안드로이드 개발 강좌
- 안드로이드 2.0 개발
- 구글안드로이드
- 안드로이드 배경화면
- 안드로이드2.0
- sky 시리우스폰
- 안드로이드 개발 2.0 강좌
Archives
- Today
- Total
moozi
[ 안드로이드 개발 2.0 ] LinearLayout 출력해보기 본문
[ 안드로이드 개발 2.0 ] LinearLayout 출력해보기
이번 강좌에서는 LinearLayout 을 출력해보겠습니다.
역시 안드로이드 개발자사이트의 Tutorial을 참고하여 진행해 보겠습니다.
1. 다음과 같이 새 프로젝트를 생성합니다.
2. 왼쪽 탐색기에서 res -> layout -> main.xml 파일을 엽니다.
3. 왼쪽 하단의 main.xml 탭을 눌러서 소스를 엽니다.
4. 코드를 수정합니다. (아래 코드를 붙여넣기 합니다.)
5. 메뉴에서 Run -> Run 을 선택하고, Run As 창에서 Android Application을 클릭후 OK를 누릅니다.
6. 결과화면입니다.
이번 결과화면 역시 버튼을 눌러야 볼 수 있었습니다.
LinearLayout 은 main.xml 파일에서 코딩하여 출력하였는데 main.xml이 레이아웃을 담당하는 xml파일임을 알 수 있습니다.
다음은 회색을 추가한 소스코드와 결과화면입니다.
[ LinearLayout 에 회색을 추가한 모습 ]
[ 회색이 추가된 결과화면 ]
역시 안드로이드 개발자사이트의 Tutorial을 참고하여 진행해 보겠습니다.
1. 다음과 같이 새 프로젝트를 생성합니다.
2. 왼쪽 탐색기에서 res -> layout -> main.xml 파일을 엽니다.
3. 왼쪽 하단의 main.xml 탭을 눌러서 소스를 엽니다.
4. 코드를 수정합니다. (아래 코드를 붙여넣기 합니다.)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<TextView
android:text="red"
android:gravity="center_horizontal"
android:background="#aa0000"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"/>
<TextView
android:text="green"
android:gravity="center_horizontal"
android:background="#00aa00"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"/>
<TextView
android:text="blue"
android:gravity="center_horizontal"
android:background="#0000aa"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"/>
<TextView
android:text="yellow"
android:gravity="center_horizontal"
android:background="#aaaa00"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<TextView
android:text="row one"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<TextView
android:text="row two"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<TextView
android:text="row three"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<TextView
android:text="row four"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
</LinearLayout>
5. 메뉴에서 Run -> Run 을 선택하고, Run As 창에서 Android Application을 클릭후 OK를 누릅니다.
6. 결과화면입니다.
이번 결과화면 역시 버튼을 눌러야 볼 수 있었습니다.
LinearLayout 은 main.xml 파일에서 코딩하여 출력하였는데 main.xml이 레이아웃을 담당하는 xml파일임을 알 수 있습니다.
다음은 회색을 추가한 소스코드와 결과화면입니다.
[ LinearLayout 에 회색을 추가한 모습 ]
[ 회색이 추가된 결과화면 ]
'안드로이드개발강좌' 카테고리의 다른 글
[ 안드로이드 개발 2.0 ] TableLayout 출력하기 (8) | 2009.12.28 |
---|---|
[ 안드로이드 개발 2.0 ] RelativeLayout 출력하기 (7) | 2009.12.26 |
[ 안드로이드 개발 2.0] Hello Android 출력하기 (32) | 2009.12.26 |
[ 안드로이드 개발 2.0 ] 개발환경구축하기5 - Virtual Device 생성 (22) | 2009.12.24 |
[ 안드로이드 개발 2.0 ] 개발환경구축하기4 - Available Package 추가등록 (0) | 2009.12.24 |
Comments