Notice
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 |
Tags
- 어노테이션
- Graphic
- struts2
- 기본
- 에러페이지
- 오버로딩
- AWT
- 메서드
- mybatis
- OGNL
- paint
- 국제화
- oracle
- Spring
- JSP
- 이클립스
- 전화걸기
- 예외처리
- Android
- 배열
- Java
- 메소드
- JavaScript
- layout
- 클래스
- Menu
- 안드로이드
- Eclips
- 생성자
- HTML
Archives
- Today
- Total
note
Linear Layout orientation 본문
<?xml version="1.0" encoding="utf-8"?>
<!--
LinearLayout를 사용할때
android:orientation : vertical -> 세로배치
horizontal -> 가로배치
-->
<!-- 세로 배치 -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="첫번째" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="두번째" />
<!-- 가로 배치 -->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="세번째" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="네번째" />
</LinearLayout>
</LinearLayout>
'Android > 기본' 카테고리의 다른 글
| Android LinearLayout 가중치 (0) | 2012.01.06 |
|---|---|
| Linear Layout gravity (0) | 2012.01.06 |
| Android Log Cat 사용 ,전화 걸기 문자 보내기 기능 (0) | 2012.01.06 |
| Android Radio Button (라디오 버튼) (0) | 2012.01.06 |
| Android 체크 박스 (0) | 2012.01.05 |