Configure Component 대화창에서 아래와 같이 설정후, Finish 버튼을 클릭
[확인] 프로젝트에서 다음의 변경사항을 확인해 본다.
자동으로 생성된 fragment_first.xml 파일을 열고, FrameLayout에 다음과 같이 background 속성을 추가
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_orange_light"
tools:context=".FirstFragment">
<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/hello_blank_fragment" />
</FrameLayout>