如何在Action Bar中创建标签?

时间:2016-01-31 11:09:15

标签: android android-tabs

如图所示

是否可以在ActionBar内创建标签?

我只设法创建TabHost,但它位于ActionBar之下而不在其中(我认为很明显标签位于内部,因为ActionBar有一个完美的流程标签的标题)。

2 个答案:

答案 0 :(得分:3)

正如@Rami所说:

  

图片中的那些标签不在ActionBar中,它们位于其中   ActionBar

您可以将其与TabLayout(来自支持库)或其他库一起使用。TabLayout是最佳选择。

这是一个很好的教程:https://guides.codepath.com/android/google-play-style-tabs-using-tablayout

并检查此链接:How to implement android TabLayout design support libarary with Swipe views

示例:

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:layout_scrollFlags="scroll|enterAlways" />

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</android.support.design.widget.AppBarLayout>

看看:Tabs in TabLayout not filling up entire ActionBar

答案 1 :(得分:0)

根据图片,标签不在操作栏内,但标签颜色和操作栏颜色相同,这就是为什么它看起来像