2011-12-08 76 views
0

我的程序有兩個佈局:layout1和layout2。 當layout1被OnTouchListener()觸摸時,我使layout2可見。 我想layot1頂部的layout2。 相反,layout2被layout1覆蓋。 任何人都可以幫助我解決問題? 我的代碼爲:Android中的佈局優先級

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/RelativeLayout1" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <RelativeLayout 
     android:id="@+id/relativeLayout2" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:visibility="invisible"> 


     <ImageButton 
      android:id="@+id/video_playback_pause" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content"/> 

    </RelativeLayout> 

    <VideoView 
     android:id="@+id/videoView1" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_centerInParent="true"/> 

     android:layout_alignParentLeft="true" 
     android:layout_alignParentBottom="true" android:layout_below="@id/relativeLayout2"/> 

</RelativeLayout> 

我想relativeLayout2覆蓋videoView1。

+0

請提供代碼/ XML示例。 –

回答

1

嘗試使用它可以使堆棧Views.Also看看ViewFlipper.Also如果您可以將您的佈局作爲碎片,也提供了方式來做到這一點,根據您的要求,您可以選擇最好的。