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