일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드
- 영어
- 안드로이드 개발 2.0 강좌
- 아이폰 배경화면
- 안드로이드 2.0 개발
- 구글 안드로이드 개발
- MapView
- 스카이 안드로이드폰 시리우스
- 하루 한마디 영어
- android
- 안드로이드개발
- 안드로이드 개발
- 안드로이드 개발 2.0
- SKY 시리우스
- 스카이 안드로이드폰 시리우스 K양 동영상
- 구글안드로이드
- 안드로이드폰
- objective-c
- 스마트폰 배경화면
- 안드로이드 개발 강좌
- Form Stuff
- 안드로이드2.0
- 하루한마디영어
- 안드로이드 바탕화면
- 아이폰 바탕화면
- 구글 안드로이드
- 안드로이드 배경화면
- 인기있는 블로그 만들기
- 안드로이드2.0개발
- sky 시리우스폰
- Today
- Total
moozi
5/13 스마2A layout 본문
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<EditText
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="이름입력"
android:ems="10" >
</EditText>
<EditText
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="제목입력"
android:ems="10" />
<EditText
android:id="@+id/memo"
android:background="#0000ff"
android:hint="메모입력"
android:gravity="top"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<Button android:text="보내기"
android:id="@+id/button_call"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>