在另一个 Activity 和布局中插入类似 Android 首选项的内容

发布于 2024-10-18 03:34:19 字数 1531 浏览 8 评论 0原文

我正在设计一个搜索一堆项目的应用程序,我想知道是否有一种方法可以在 SlidingDrawer 中放置类似首选项的布局(类似于共享首选项),以便我可以过滤结果。我不介意它是否真的使用共享首选项系统(而且我发现根本不可能),尽管这将是一个优点。因此,如上所述:

有没有办法在另一个布局中插入首选项布局?

我包含了我的代码,以防万一。

<?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>

提前致谢。

I'm designing an application that searches a bunch of items and I was wondering if there was a way to place a Preferences-like layout (similar to Shared Preferences) inside a SlidingDrawer, for example, so I could filter the results. I don't mind whether it actually uses the Shared Preferences system or not (and I don't find it possible at all), though it would be a plus. So, as mentioned:

Is there a way to insert a Preference layout inside another layout?

I include my code, just in case.

<?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>

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文