1

ハンドラーをタップすると、slidingdrawerが表示されますが、その内容は透明です。内容とリストビューの両方を見ることができます。リストビューは非表示になりません。

これが私のレイアウト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>

前もって感謝します!

4

1 に答える 1

2

SlidingDrawer を ListView の下に配置します。

android:layout_below="@id/lvq"
于 2012-07-24T06:57:17.923 に答える