我想要的Appbar
/ Toolbar
如下图所示。
我不需要设置Tablayout
即可工作-我知道,-
但是我对设置Appbars
/ Toolbars
并不十分了解。
DrawerLayout
对我来说也不应该是一个问题。
我下面已经有代码,但是我不知道如何继续。
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/tabs">
//here are my tabItems
</android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:menu="@menu/menu_nav"
app:headerLayout="@layout/nav_header"/>
</android.support.v4.widget.DrawerLayout>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:0)
正如Mike M.所说,您必须在Toolbar
周围加上TabLayout
。
然后,您必须在活动中执行以下操作:
首先使用setSupportActionBar()
将工具栏设置为ActionBar。
然后使用getActionBar()
获取ActionBar,并在其上使用Vector Asset setHomeAsUpIndicator()
调用menu
。