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
- Menu
- oracle
- 어노테이션
- mybatis
- Java
- JavaScript
- 이클립스
- Android
- 전화걸기
- 메서드
- Eclips
- 예외처리
- 오버로딩
- struts2
- 안드로이드
- 배열
- 메소드
- layout
- 국제화
- 클래스
- 기본
- paint
- JSP
- OGNL
- Spring
- 에러페이지
- AWT
- 생성자
- HTML
Archives
- Today
- Total
note
Android Margin Padding 본문
<?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:layout_marginTop="50px"
android:layout_marginLeft="50px"
android:layout_marginRight="50px"
android:layout_marginBottom="50px"
android:text="마긴테스트" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="50px"
android:paddingLeft="50px"
android:paddingRight="50px"
android:paddingBottom="50px"
android:text="패딩" />
</LinearLayout>
'Android > 기본' 카테고리의 다른 글
| Android Frame Layout (0) | 2012.01.06 |
|---|---|
| Android Relative Layout (0) | 2012.01.06 |
| Android LinearLayout 가중치 (0) | 2012.01.06 |
| Linear Layout gravity (0) | 2012.01.06 |
| Linear Layout orientation (0) | 2012.01.06 |