0

当我将滑动抽屉小部件添加到我的布局时,我遇到了障碍。我添加了它,一切正常。问题是当我有一个填充高度的布局时,滑动抽屉的手柄不再可见。有没有办法通过将手柄放在前台或其他方式来实现这一点,从而使手柄可见?

我正在玩的示例来自:

https://mobibear.wordpress.com/2010/07/12/android-slidingdrawer-with-custom-view/

我从上面的站点编辑的只是下面的 .xml 文件。提前谢谢你,我会一直待着的......

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linear"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Blah Blah Title"
        android:gravity="center"
        android:textSize="38dp"/>

    <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

    </FrameLayout>

    <SlidingDrawer xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/drawer"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:handle="@+id/handle"
        android:content="@+id/content">

        <bear.exmaple.CustomView
            android:id="@+id/content"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
        </bear.exmaple.CustomView>


        <ImageView android:id="@id/handle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/tray_handle_normal" />

    </SlidingDrawer>

</LinearLayout>
4

1 回答 1

0

我最终找到了这个问题的答案,它就像在相对布局中添加所有视图/布局并确保滑动抽屉是最终添加一样简单。这是答案所在的链接:

相同布局的滑动抽屉

于 2012-07-04T21:39:55.153 回答