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 | 31 |
Tags
- 어노테이션
- 클래스
- Android
- 메서드
- AWT
- JSP
- 에러페이지
- 예외처리
- mybatis
- 생성자
- OGNL
- layout
- oracle
- 이클립스
- 안드로이드
- 기본
- JavaScript
- 메소드
- Menu
- Spring
- 전화걸기
- paint
- 오버로딩
- 국제화
- Eclips
- struts2
- 배열
- HTML
- Graphic
- Java
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 |