2

如何将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()
4

1 回答 1

5

正如@igor_rb 已经指出的那样,这只有在您从 a 切换ActionBar到 a时才有可能Toolbar

请参阅以下已在 github https://github.com/mikepenz/MaterialDrawer/issues/523 https://github.com/mikepenz/MaterialDrawer/issues/522 https://github.com/mikepenz/MaterialDrawer/回答的问题问题/333

切换到 aToolbar真的很容易。


在布局中使用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" />

设置ToolbarSupportActionBar

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

完毕

于 2015-09-12T19:41:57.643 回答