我找了很多地方,但找不到一个像样的教程,教我如何为我的应用程序制作一个滑动抽屉。
假设我已经有了一个XML文件,我想在其中添加一个滑动抽屉..我还想添加一个TextView和ListView对象,以及其中的一些按钮…我该怎么做呢?
任何帮助都将不胜感激!

最佳答案

这是一个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。这是相对不寻常的——这个样本很短,因为它来自一本书。
更常见的情况是,我希望您将aSlidingDrawer作为aRelativeLayout的子级放置,这样您就可以有其他的子级RelativeLayout并在打开时将抽屉滑到它们的顶部。我相信在这种情况下,您需要SlidingDrawer作为RelativeLayout的最后一个孩子。

10-05 18:02