Skip to content

Instantly share code, notes, and snippets.

@agiletalk
Created April 12, 2011 16:59
Show Gist options
  • Save agiletalk/915915 to your computer and use it in GitHub Desktop.
Save agiletalk/915915 to your computer and use it in GitHub Desktop.
[예제] weight
<?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"
>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="위쪽 버튼"
android:layout_weight="1"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="가운데 에디트"
android:layout_weight="3"
/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="아래쪽 버튼"
android:layout_weight="1"
/>
</LinearLayout>
<?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"
>
<Button
android:layout_width="fill_parent"
android:layout_height="64px"
android:text="위쪽 버튼"
android:layout_weight="0"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="가운데 에디트"
android:layout_weight="1"
/>
<Button
android:layout_width="fill_parent"
android:layout_height="64px"
android:text="아래쪽 버튼"
android:layout_weight="0"
/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment