note

Android LinearLayout 가중치 본문

Android/기본

Android LinearLayout 가중치

투한 2012. 1. 6. 15:43
<?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:text="Tool_Bar"
        android:layout_weight="0"
         />
    
    <EditText
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1" />
    
    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Menu_Bar"
        android:layout_weight="0" />

</LinearLayout>


'Android > 기본' 카테고리의 다른 글

Android Relative Layout  (0) 2012.01.06
Android Margin Padding  (0) 2012.01.06
Linear Layout gravity  (0) 2012.01.06
Linear Layout orientation  (0) 2012.01.06
Android Log Cat 사용 ,전화 걸기 문자 보내기 기능  (0) 2012.01.06