如何在底部而不是顶部显示标签?

时间:2011-03-23 08:04:19

标签: android

我有以下屏幕, enter image description here

我使用以下代码制作布局以显示tabhost和制表符小部件

enter image description here

我想将标签放在底部。 请告诉我们如何做到这一点。

3 个答案:

答案 0 :(得分:3)

嘿,我使用以下代码完成了这项工作:

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

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="5dp"
        android:layout_weight="1"/>

    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"/>

</LinearLayout>

答案 1 :(得分:1)

请尝试以下内容。在标签小部件中,您必须指定Tab的上限重力(即,)v

<LinearLayout android:orientation="vertical" android:background="#000000" android:id="@+id/tab"
    android:layout_width="fill_parent" android:layout_height="fill_parent">

    <TabWidget android:id="@android:id/tabs" android:background="@drawable/gradient_black"
        android:gravity="bottom" android:listSelector="#999999"
        android:layout_width="fill_parent" android:layout_height="63dip" />
</LinearLayout>

答案 2 :(得分:0)

以下代码显示底部的标签:

<?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:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true">
        </TabWidget>
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_above="@android:id/tabs">
        </FrameLayout>
    </RelativeLayout>
</TabHost>