xml을 새롭게 만들어서 해보자~~



<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <!-- textView -->
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="100px"
        android:background="#dd1111"
        android:text="text1" />
    <!-- LinearLayout 수평 -->
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="100px"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="100px"
            android:layout_height="100px"
            android:layout_weight="1"
            android:background="#00ee00"
            android:text="text2" />

        <TextView
            android:layout_width="100px"
            android:layout_height="100px"
            android:layout_weight="1"
            android:background="#0000ff"
            android:text="text3" />
    </LinearLayout>

    <!-- textView -->

    <TextView
        android:layout_width="match_parent"
        android:layout_height="100px"
        android:background="#FFFF33"
        android:text="text4" />

</LinearLayout>



'Android > 2012.04월 강좌' 카테고리의 다른 글

2일차 이벤트2  (0) 2012.04.27
2일차 이벤트  (0) 2012.04.27
2일차 Layout  (0) 2012.04.27
2일차 기본3  (0) 2012.04.27
2일차 기본2  (0) 2012.04.27

+ Recent posts