FrameLayout 은 그 안에 포함되어 있는 자식 View 들을 차례대로 중첩시켜 나타내는 레이아웃을 말한다.
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Image View 위에 TextView 가 중첩되어 표시된다. -->
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/background" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World"
android:layout_gravity="center" />
</FrameLayout>
FrameLayout 은 다음과 같은 속성을 가지고 있다.