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