일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CSS
- Activity
- 에디터
- 웹개발
- Intent
- TinyMCE
- JavaScript
- Selector
- 글쓰기
- 제이쿼리
- androidstudio
- 인텐트
- 아이콘
- 영성
- 주님의교회
- 안드로이드 AVD
- 게시판
- 청주
- Resources
- 안드로이드
- #청주주님의교회
- jQuery
- Spring
- 생명주기
- 프로그래밍
- Android
- 자바
- Java
- 회원가입
- java 8
- Today
- Total
공부하는 블로그
(안드로이드 프로그래밍) 첫번째 어플리케이션 본문
android activity_main.xml
ROOT Layout
아래 view - widget -
- Container
-view -
|
매 프로젝트 마다 LinearLayout으로 변경하고 android:orientation="vertical" 을 추가한다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ktds.myapplication.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
</LinearLayout>
가장 기본적인 형태이다.
HTML에서는 align으로 정렬을 하지만 Android에서는 gravity로 정렬한다.
android:gravity="center" 을 추가하면
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ktds.myapplication.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
</LinearLayout>
가운데 정렬이 가능하다.
'Develop > 안드로이드' 카테고리의 다른 글
(안드로이드 프로그래밍) Linear Layout 실습 2 (0) | 2017.09.26 |
---|---|
(안드로이드 프로그래밍) Linear Layout 실습 1 (0) | 2017.09.26 |
(안드로이드 프로그래밍) LinearLayout 만들기 (0) | 2017.09.25 |
안드로이드 AVD와 Resources와 화면 설명 (0) | 2017.09.25 |
안드로이드 개발환경 설치 설정 (Android Studio 설치부터) (0) | 2017.09.25 |