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가 담을 메시지를 지정 />