일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 알고리즘
- C++
- Windows Forms
- 언제나 휴일
- c#
- 동영상
- 졸업 작품 소재
- 실습으로 다지는 c#
- 동영상 강의
- 캡슐화
- 소켓 통신
- 강의
- 충남 천안
- 유튜브 동영상 강의
- 추천
- 원격 제어 프로그램
- 안드로이드 앱 개발
- 언제나휴일
- 표준 입출력
- c언어
- 졸업 작품
- 무료 동영상 강의
- 실습
- 소스 코드
- 표준 라이브러리 함수
- 파이썬
- 산책하기 좋은 곳
- 네트워크 프로그래밍
- 프로젝트
- 클래스 다이어그램
Archives
- Today
- Total
프로그래밍 언어 및 기술 [언제나휴일]
3. Layout – 2. RelativeLayout 본문
이번에는 자식 컨트롤을 배치할 때 상, 하, 좌, 우, 중앙 등을 선택하여 배치할 수 있는 RelativeLayout을 이용하는 간단한 실습을 해 봅시다.
최상위 요소는 LinearLayout이며 TextView(RelativeLayout 실습)와 RelativeLayout을 자식으로 배치하세요. 그리고 RelativeLayout의 자식으로 5개의 TextView를 상, 하, 좌, 우, 중앙에 배치하세요.
layout_alignParentTop, layout_alignParentBottom, layout_alignParentLeft, layout_alignParentRight 속성을 이용하여 상, 하, 좌, 우에 배치할 수 있으며 layout_centerInParent 속성을 이용하여 중앙에 배치할 수 있습니다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:text="RelativeLayout 실습"
android:textSize="30sp"
android:textColor="#0000FF"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="위쪽"
android:textSize="20sp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:text="아래쪽"
android:textSize="20sp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:text="왼쪽"
android:textSize="20sp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:text="오른쪽"
android:textSize="20sp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:text="중앙"
android:textSize="20sp"
android:layout_centerInParent="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
</LinearLayout>
언제나휴일 추천 여행 및 산책
'Java 안드로이드 > 안드로이드' 카테고리의 다른 글
4. 기본 컨트롤 – 2. EditText (0) | 2025.01.04 |
---|---|
4. 기본 컨트롤 – 1. TextView (0) | 2025.01.04 |
3. Layout – 4. GridLayout (0) | 2025.01.04 |
3. Layout – 3. TableLayout (0) | 2025.01.04 |
3. Layout – 1. LinearLayout (0) | 2025.01.04 |
2. 첫 번째 앱 만들기 (1) | 2025.01.04 |
1. 개발환경 – 2. 안드로이드 Studio 설치 (0) | 2025.01.04 |
1. 개발환경 – 1. JDK 설치 (0) | 2025.01.04 |