안드로이드 xml 에서 layout(레이아웃) 잡으실떄 padding 에 관련된 기본소스입니다.
<?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:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Upper Text"
/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:backgrount="10dip"
android:padding="10dip"
>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button"
/>
</LinearLayout>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Lower Text"
/>
</LinearLayout>
패딩은 레이아웃을 ui 하실떄 잘사용하시면되는데여 margin 과 padding등
여러가지 기능 들이 있습니다. 이들은각각 레이아웃 사이에 공간을 두거나
밀어내거나 하는 기능들입니다.
'Study > Android' 카테고리의 다른 글
android Tab (0) | 2013.07.15 |
---|---|
xml 파일 안에 내용 쓰기 (0) | 2013.07.10 |
Android 생명주기 와 메소드 (0) | 2013.07.03 |
이클립스 테마 (0) | 2013.05.10 |
Android Toast 안드로이드 토스트 (0) | 2013.03.28 |