当我将滑动抽屉小部件添加到我的布局时,我遇到了障碍。我添加了它,一切正常。问题是当我有一个填充高度的布局时,滑动抽屉的手柄不再可见。有没有办法通过将手柄置于前台或可能采用其他方式实现此目的来使手柄可见?
我正在玩的例子来自:
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>
答案 0 :(得分:0)
我最终找到了这个问题的答案,就像在相对布局中添加所有视图/布局一样简单,并确保滑动抽屉是最后添加的。以下是答案所在的链接: