|
<?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> |