如何在 android 中实现顶部和底部标签栏

How to Implement top and bottom tab bar in android

实现顶部和底部标签栏最简单的方法是什么,我搜索了一个lot.can谁能帮我找出来

如果您想创建可交换的标签栏,请使用下面的示例 link: 1.

1.http://www.androidhive.info/2013/10/android-tab-layout-with-swipeable-views-1/ 2.http://javapapers.com/android/android-tab-layout-with-swipe-views/ 3.https://github.com/JakeWharton/ViewPagerIndicator

对于底部,使用第三个 link :

<com.viewpagerindicator.TitlePageIndicator
    android:id="@+id/titles"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent" />

视图底部。

对于以下 link:

中的不可交换使用示例

http://www.survivingwithandroid.com/2013/06/android-action-bar-with-tab.html http://javapapers.com/android/android-tab-layout-tutorial/ 如果你想创建底部标签栏然后使用:

android:layout_alignParentBottom="true"

请使用样本: http://envyandroid.com/align-tabhost-at-bottom/