将 MaterialDrawer 放在操作栏上方
place MaterialDrawer above actionbar
如何将 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()
正如@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);
完成
如何将 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()
正如@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);
完成