Android SlidingDrawer的操作方法

时间:2010-11-01 18:49:16

标签: android listview slidingdrawer

我看过很多地方,但我找不到一个关于如何为我的应用程序制作SlidingDrawer的体面教程。

说我已经有了一个XML文件,我想为它添加一个滑动抽屉..我还想添加一个textview和listview对象,以及其中的一些按钮......我将如何去做呢?

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:3)

这是SlidingDrawer sample app。特别是,这是布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#FF4444CC"
        >
    <SlidingDrawer
        android:id="@+id/drawer"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:handle="@+id/handle"
        android:content="@+id/content">
        <ImageView
            android:id="@id/handle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/tray_handle_normal"
        />
        <Button
            android:id="@id/content"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:text="I'm in here!"
        />
    </SlidingDrawer>
</FrameLayout>

现在,在这种情况下,整个活动只是SlidingDrawer。这是相对不寻常的 - 这个样本很短,因为它来自一本书。

更常见的情况是,我希望您将SlidingDrawer作为RelativeLayout的孩子,这样您就可以拥有RelativeLayout的其他孩子,并将抽屉滑过顶部他们打开时。我相信在这种情况下,您需要SlidingDrawer成为RelativeLayout的最后一个孩子。