我正在设计一个搜索大量项目的应用程序,我想知道是否有办法在SlidingDrawer中放置类似于Preferences的布局(类似于共享首选项),所以我可以过滤结果。我不介意它是否真的使用共享偏好系统(我根本没有发现它),尽管它会是一个加号。所以,如上所述:
有没有办法在另一个布局中插入首选项布局?
我包含我的代码,以防万一。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<ListView android:layout_height="fill_parent" android:id="@+id/lista_recetas"
android:layout_width="fill_parent" android:layout_alignParentTop="true"
android:paddingBottom="40dip"></ListView>
<SlidingDrawer android:layout_alignParentBottom="true"
android:id="@+id/slidingDrawer" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:handle="@+id/handle"
android:content="@+id/content">
<LinearLayout android:id="@+id/handle"
android:layout_width="fill_parent" android:layout_height="40dip"
android:background="#000000"></LinearLayout>
<LinearLayout android:id="@+id/content"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:background="#333333">
<ExpandableListView android:layout_width="fill_parent"
android:layout_height="fill_parent"></ExpandableListView>
</LinearLayout>
</SlidingDrawer>
</RelativeLayout>
提前致谢。