2012-08-17 174 views
0

我正在處理一個像菜單一樣的應用程序,並且我的菜單選項的相對佈局被另一個包含圖像的相對佈局所覆蓋。你們能告訴我我哪裏錯了嗎?實際上,我希望菜單位於頂部,中間是選項,圖像位於底部。我的相對佈局隱藏了另一個相對佈局

這裏是我的XML代碼:

<RelativeLayout 
    android:id="@+id/RelativeLayout02" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android > 

    <ImageView 
     android:id="@+id/imageView3" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_alignParentTop="false" 
     android:contentDescription="@string/desc" 
     android:scaleType="fitEnd" 
     android:src="@drawable/half" /> 

</RelativeLayout> 

<RelativeLayout 
    android:id="@+id/RelativeLayout01" 
    android:layout_width="match_parent" 
    android:layout_height="247dp" > 



    <ImageView 
     android:id="@+id/imageView1" 
     android:layout_width="50dp" 
     android:layout_height="50dp" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:contentDescription="@string/desc" 
     android:src="@drawable/paranoid_android" /> 

    <TextView 
     android:layout_width="200dp" 
     android:layout_height="50dp" 
     android:layout_alignParentTop="true" 
     android:layout_centerHorizontal="true" 
     android:layout_centerInParent="true" 
     android:text="@string/menu" 
     android:textColor="@color/white" 
     android:textSize="@dimen/titlefont" /> 

    <ImageView 
     android:id="@+id/imageView2" 
     android:layout_width="50dp" 
     android:layout_height="50dp" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentTop="true" 
     android:contentDescription="@string/desc" 
     android:src="@drawable/paranoid_android" /> 
</RelativeLayout>  

感謝。

回答

0

只要把它放在一個相對的佈局 - 這是相對佈局的目的。在其他組件之前或之後添加圖像,使其位於其下方或上方。相對佈局的設計使得在其中移動一個視圖不會影響佈局中其他視圖的位置,因此您可以將視圖層疊到彼此之上。

+0

好東西..謝謝! – Neophile 2012-08-17 15:46:32