在android中添加标签栏底部的问题

时间:2011-05-09 11:02:46

标签: android tabwidget

在我的应用程序中,我有一个标签栏。它包含四个选项卡,我在其中显示列表视图。它工作正常,但现在我需要将标签栏移动到屏幕的底部。当我将代码更改为在视图底部显示标签栏时,列表视图也会全屏显示,并与标签栏重叠。

以下是示例代码

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:id="@+id/mainlayout"
             android:layout_height="fill_parent" 
             android:layout_width="fill_parent"
             android:orientation="vertical" >
    <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"
        android:orientation="vertical"
        android:background="#000000">

        <RelativeLayout
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:padding="5dp">

            <TextView xmlns:android="http://schemas.android.com/apk/res/android"
                    android:id="@+id/Label"
                    android:layout_width="fill_parent" 
                    android:layout_height="wrap_content" 
                    android:text="Credit Balance"
                    android:background = "#55000000"
                    android:textColor = "#FF0033"
            />

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

我使用以下代码在4个相应的标签中添加4个列表视图

 tabHost.addTab(tabHost.newTabSpec(NEW_TAB).setIndicator(NEW)
            .setContent(new Intent(this, NEWActivity.class)));

请有人建议解决这个问题吗?

由于

1 个答案:

答案 0 :(得分:3)

添加此

android:layout_above="@android:id/tabs"

与您的FrameLayout对齐并使用

android:layout_alignParentBottom = "true"
TabWidget中的