你好 我是一个Android用户。我有内容列表页面,我成功完成了它。但问题是我必须在页脚上放两个标签,页脚标签应保持永久。我也做了很多搜索来修复这个问题,但是找不到解决方案。有人请帮助我。
谢谢,
Anoop
答案 0 :(得分:0)
是否要尝试将页眉和页脚添加到列表视图?然后请检查列表视图中的addHeader。检查此link
我已实现它,如果需要,那么我将发布代码
答案 1 :(得分:0)
您需要在RelativeLayout内使用TabLidget和FrameLayout下面的TabWidget而不是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>