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