一連のアイテムを検索するアプリケーションを設計しています。たとえば、SlidingDrawer 内に設定のようなレイアウト (共有設定に似ています) を配置する方法があるかどうか疑問に思っていたので、結果をフィルタリングできます。それが実際に共有設定システムを使用しているかどうかは気にしません (そして、それが可能だとはまったく思いません)。したがって、前述のように:
Preference レイアウトを別のレイアウト内に挿入する方法はありますか?
念のため、コードを含めます。
<?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>
前もって感謝します。