Android tablayout在屏幕底部放置标签

时间:2011-06-23 08:51:05

标签: android android-layout

  

可能重复:
  Android: Tabs at the BOTTOM

我想将标签布局的标签放在屏幕的底部,iPhone就像。 我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

请参阅下面的xml ...现在如果你想把你的标签放在底部,只需将tabwidget移动到Framelayout(相对论)下面,因为tabwidget和Framelayout在相对布局中。

    <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">
            <TabWidget android:id="@android:id/tabs"
                android:layout_alignParentBottom="true"
                android:background="#FFFFFF"
                android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:layout_marginLeft="0dip" android:layout_marginRight="0dip" />
            <FrameLayout android:id="@android:id/tabcontent"
                android:background="#00FFFF"
                android:layout_width="fill_parent" android:layout_height="wrap_content" />
        </RelativeLayout>
    </TabHost>

</LinearLayout>