<FrameLayout xmlns:android="
http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Push Button"
/>
<ImageView
android:id="@+id/pic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/korandoc"
/>
</FrameLayout>
이렇게 XML을 만들었는데 선언이 먼저한게 아래에 가야하는데
버튼이 이미지 위로 올라옵니다
이미지랑 버튼의 순서를 바꿔도 똑같이 버튼이 이미지위로 올라옵니다
코드에는 이상이 없는거같은데 뭐가 문제일까요?