0

效果是这样的:

在此处输入图像描述

我研究了一些方法。

有人用radiogroup,有人用tabhost

最简单的方法是什么?

还有其他方法吗?

4

2 回答 2

2

这并不是谷歌在 标签设计指南中推荐的内容,如果你仍然想使用它,我认为 TabHost 是完美的方式。有关更多信息,请参阅如何在屏幕底部对齐TabHost

<?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>
于 2013-05-02T04:38:21.687 回答
2

查看此链接,其中包含每种类型选项卡的库和示例代码(即圆圈、下划线等)

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

而且,示例将帮助您了解不同的选项卡格式。

一切顺利!

于 2013-05-02T05:33:23.470 回答