생성된 ui_component_size.xml 파일의 내용을 아래와 같이 수정해 보자.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Width = Match Parent"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Width = wrap content"/>
<TextView
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="Width = 100dp"/>
</LinearLayout>
XML 코드에서 TextView 위젯의 layout_width, layout_height의 값을 아래와 같이 다양하게 변경하여 보고, [Design] 탭을 클릭하여 변화를 살펴본다.
[참고] ui_component_size.xml 파일의 내용을 실제 혹은 가상 디바이스에 표시하기 위해서는 MainActivity 클래스의 코드에서 setContentView() 함수를 다음과 같이 수정하여야 함
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.ui_component_size); // 이 부분이 변경됨
}
}