안녕하세요.

xml 이용해서 화면을 꾸미고 있는데요. 하나의 레이아웃 위에 다른 레이아웃이 겹쳐져
보이려면 어떻게 해야 하나요?

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/background"
    android:layout_gravity="center"
    >
    <LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="center"
    > 
  <TextView 
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/main_title"
      android:layout_gravity="center"
      android:layout_marginTop="10dip"
      android:textSize="24.5sp"
      />
  <ImageView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:src="@drawable/photo_3"  
   android:scaleType="fitCenter"
   android:layout_gravity="center"
   />
 </LinearLayout></LinearLayout> 

이렇게 하니까 텍스트 아래에 이미지가 뿌려져 버리는데요. xml에서 정의하는 것만으로는 안되는건지.. 
레이아웃과 그 속성들에 대해 잘 이해하기 위해 참고할 수 있는 것도 좀 알려주시면 감사하겠습니다.
헷갈리고 어렵네요ㅠㅠ