slidedrawer内容与视图重叠

时间:2012-07-24 06:51:31

标签: android

当我点击处理程序时,抽屉被提起,但其内容是透明的,我可以看到内容和列表视图。列表视图不会被隐藏。

这是我的布局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>

提前感谢!

1 个答案:

答案 0 :(得分:2)

将SlidingDrawer放在ListView下面。

android:layout_below="@id/lvq"