<?xml version="1.0" encoding="utf-8"?> <!--android : layout_width -> 내가 만들고 있는 View의 가로(너비) 길이 android : layout_height ->세로 길이 (높이) 지정 : match_parent == fill_parent : 부모의 크기를 다 차지 한다. : wrap_content : 자식 노드들을 보여줄 크기 까지만 차지 한다. : android:orientation="vertical" : 방향을 수직(위에서 아래로)으로 주겠다. : EditText : HTML에서 input과 같은 역할 : hint 는 새로운 글이 들어오면 기존의 글이 사라짐, text는 기존꺼를 남겨두고 글을 쓴다. --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/tv_label" android:textSize="@dimen/tv_size" android:background="@color/tv_bg"/> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="자기소개" />