实施“底部导航标签栏”的强大方式

时间:2013-05-02 03:28:19

标签: android tabs

效果是这样的:

enter image description here

我调查了一些方法。

有人使用radiogroup,有人使用tabhost

最简单的方法是什么?

还有其他办法吗?

2 个答案:

答案 0 :(得分:2)

谷歌在{{}}}推荐的并不是真的,如果你还想使用它,我认为TabHost是完美的方式。更多请参阅Design Guidelines for tabs

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

答案 1 :(得分:2)

查看this link,其中包含每种标签类型的库和示例代码(即圆圈,下划线等)

使用此库,您可以实现不同类型的选项卡格式。您的工作只是将此库导入您的应用程序。

并且,Samples将帮助您了解不同的标签格式。

一切顺利!