Android 内容列表和页脚

发布于 2024-10-20 14:27:30 字数 124 浏览 1 评论 0原文

你好
我是安卓用户。我有内容列表页面,并且我成功完成了它。但问题是我必须在页脚上放置两个选项卡,并且页脚选项卡应永久保留。我也做了很多搜索来解决这个问题但找不到解决方案。任何人请帮助我。

谢谢,
阿努普

Hi
I am an android user. I have content listing page and i completed it successfully. But the problem is i have to put two tab on the footer and the footer tab should remain permanently. I also done so many searches to fix this issue bu cannot find the solution. Anybody please help me.

Thanks,
Anoop

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野味少女 2024-10-27 14:27:30

想要尝试向列表视图添加页眉和页脚吗?然后请检查列表视图中的 addHeader 。查看此 link

我已经实现了它,如果需要的话我会发布代码

Do want to try to add header and footer to list view? then please check the addHeader in list view .check out this link

I have implement it,if need then i will post the code

烏雲後面有陽光 2024-10-27 14:27:30

您需要在RelativeLayout中的FrameLayout下面使用带有TabWidget的TabHost而不是LinearLayout,如下所示

    <?xml version="1.0" encoding="utf-8"?>
        <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@android:id/tabhost"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
            <RelativeLayout
                android:orientation="vertical"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:padding="5dp">

                <FrameLayout
  android:layout_alignParentTop="true"
                    android:id="@android:id/tabcontent"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:padding="5dp" />
                <TabWidget
                    android:id="@android:id/tabs"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
       android:layout_alignParentBottom="true"  />
            </RelativeLayout>
        </TabHost>

You need to use a TabHost with the TabWidget underneath the FrameLayout inside a RelativeLayout instead of a LinearLayout, as follows

    <?xml version="1.0" encoding="utf-8"?>
        <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@android:id/tabhost"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
            <RelativeLayout
                android:orientation="vertical"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:padding="5dp">

                <FrameLayout
  android:layout_alignParentTop="true"
                    android:id="@android:id/tabcontent"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:padding="5dp" />
                <TabWidget
                    android:id="@android:id/tabs"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
       android:layout_alignParentBottom="true"  />
            </RelativeLayout>
        </TabHost>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文