简体   繁体   中英

Tabs indide material design Toolbar

In pre-5.0 documentation there is an example that shows tabs inside the Action bar:

在此处输入图片说明

https://developer.android.com/guide/topics/ui/actionbar.html#Tabs

What is the correct way to achieve that in 5.0+ interface with new Toolbar? Do I just place widget.TabLayout inside widget.Toolbar ?

You can place the tablayout widget inside the toolbarwidget like

<android.support.v7.widget.Toolbar 
   android:layout_width="match_parent"
   android:layout_height="?attr/actionBarSize"
   android:id="@+id/toolbar"
   android:background="?attr/colorPrimary">

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM