2012-07-24 65 views
1

當我點擊處理程序滑動畫筆被調出但其內容是透明的我可以看到內容和listview.listview不隱藏。滑動畫面內容與視圖重疊

這裏是我的佈局XML:

<?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" > 

    <ListView 
     android:id="@+id/lvq" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" > 
    </ListView> 


    <SlidingDrawer 
     android:id="@+id/slidingDrawer1" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_alignBottom="@+id/lvq" 
     android:layout_alignTop="@+id/lvq" 
     android:content="@+id/content" 
     android:handle="@+id/handle" > 

     <Button 
      android:id="@+id/handle" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:text="History" /> 

     <LinearLayout 
      android:id="@+id/content" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical" > 
     </LinearLayout> 
    </SlidingDrawer> 

</RelativeLayout> 

在此先感謝!

+0

試着設置背景顏色/圖像到滑動抽屜的內容部分。它默認是透明的。 – 2012-07-25 05:06:26

回答

2

將您的SlidingDrawer放在您的ListView下面。

android:layout_below="@id/lvq" 
+0

sry,我忘了說我已經試過了,這沒有什麼區別。 – Will 2012-07-24 07:06:47