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
- Java
- 메소드
- 전화걸기
- Menu
- 생성자
- Android
- AWT
- JSP
- 이클립스
- 오버로딩
- mybatis
- 클래스
- struts2
- Graphic
- 배열
- 메서드
- paint
- 예외처리
- 에러페이지
- 어노테이션
- 국제화
- layout
- OGNL
- JavaScript
- HTML
- oracle
- 안드로이드
- Eclips
- 기본
- Spring
Archives
- Today
- Total
note
Android LinearLayout 가중치 본문
<?xml version="1.0" encoding="utf-8"?>
<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="Tool_Bar"
android:layout_weight="0"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Menu_Bar"
android:layout_weight="0" />
</LinearLayout>
'Android > 기본' 카테고리의 다른 글
| Android Relative Layout (0) | 2012.01.06 |
|---|---|
| Android Margin Padding (0) | 2012.01.06 |
| Linear Layout gravity (0) | 2012.01.06 |
| Linear Layout orientation (0) | 2012.01.06 |
| Android Log Cat 사용 ,전화 걸기 문자 보내기 기능 (0) | 2012.01.06 |