티스토리 툴바


블로그 이미지
웃는건 좋지요.
마아로

글 보관함

calendar

1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31        

 main.xml

<?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"
     //View가 사용하는 영역의 크기를 선언하는 어트리뷰트
     //"fill_parent"는 부모 객체의 크기만큼 사용
     //"wrap_content"는 콘텐츠가 제대로 보일 수 있는 최소한의 크기를 사용 

     >
 
     //View 클래스에서 상속받은 TextView 엘리먼트  
     <TextView android:layout_width="fill_parent"
          android:layout_height="wrap_content"          
          android:textColor="#FF00FF"
          android:gravity="center"
          android:text="텍스트뷰 테스트입니다."
          //TextView가 담을 메시지를 지정
          />
    
     <EditText id="@+id/entry"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:background="@android:drawable/editbox_background"
          />
     
</LinearLayout>