如图所示
是否可以在ActionBar
内创建标签?
我只设法创建TabHost
,但它位于ActionBar
之下而不在其中(我认为很明显标签位于内部,因为ActionBar
有一个完美的流程标签的标题)。
答案 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>
答案 1 :(得分:0)
根据图片,标签不在操作栏内,但标签颜色和操作栏颜色相同,这就是为什么它看起来像