将MaterialDrawer放在actionbar上方

时间:2015-08-12 07:55:57

标签: android materialdrawer

如何将MaterialDrawer菜单放在ActionBar上方?现在,当我打开MaterialDrawer菜单时,我的ActionBar就位于它之上。 CSS中是否有像Z-index这样的东西? :d 我的申请方式:

<resources xmlns:android="http://schemas.android.com/apk/res/android">
  <style name="AppTheme" parent="Theme.AppCompat.Light">
    <item name="actionBarStyle">@style/ActionBar</item>
  </style>
  <style name="ActionBar" parent="Widget.AppCompat.Light.ActionBar">
    <item name="background">@color/yellow_dark</item>
  </style>
</resources>

我的MaterialDrawer初始化代码:

DrawerBuilder().withActivity(activity).addDrawerItems(...).withSelectedItem(-1).withTranslucentStatusBar(false).withActionBarDrawerToggle(false).build()

1 个答案:

答案 0 :(得分:5)

正如@igor_rb已经提到的那样,只有从ActionBar切换到Toolbar时才可以这样做。

在github上查看以下已经回答的问题 https://github.com/mikepenz/MaterialDrawer/issues/523 https://github.com/mikepenz/MaterialDrawer/issues/522 https://github.com/mikepenz/MaterialDrawer/issues/333

切换到Toolbar非常简单。

使用AppCompatActivity 在布局中定义Toolbar

<android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        android:elevation="4dp" />

Toolbar设为SupportActionBar

// Handle Toolbar
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

完成