안드로이드 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등
여러가지 기능 들이 있습니다. 이들은각각 레이아웃 사이에 공간을 두거나
밀어내거나 하는 기능들입니다.