android xml에는 뷰에 사용할 수 있는 다양한 속성이 있다. 1. 높이 너비 // 뷰의 높이 및 너비 android:layout_width="200dp" // 객체의 width를 200dp로 설정 android:layout_height="100dp" // 객체의 height를 100dp로 설정 android:layout_width="match_parent" // 객체의 width를 부모의 크기만큼 설정 android:layout_height="match_parent" // 객체의 height를 부모의 크기만큼 설정 android:layout_width="wrap_content" // 객체의 width를 컨텐츠의 크기만큼 설정 android:layout_height="wrap_content" // ..