Tabs indide材料设计工具栏

时间:2015-10-27 18:03:24

标签: android android-5.0-lollipop material-design android-tabs android-toolbar

pre-5.0 documentation中,有一个示例显示了操作栏中的标签:

enter image description here

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

使用新工具栏在5.0+界面中实现这一目标的正确方法是什么? 我只是将for (i = 0; i < languages.length; i++) { if(Array.isArray(languages[i])) { for (j = 0; j < languages[i].length; j++) text += "<option value='" + languages[i][j] + "'>" + languages[i][j] + "</options>"; } else { text += "<option value='" + languages[i] + "'>" + languages[i] + "</options>"; } } document.getElementById("languageOptions").innerHTML = text; 放在widget.TabLayout内吗?

1 个答案:

答案 0 :(得分:1)

您可以将tablayout小部件放在toolbarwidget中,如

<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>