我需要删除当我打开导航器时显示的阴影,我想要看到我的ActionBar(它是一个完整的v21 appcompat工具栏)。
这是了解我的问题的截图:
这是我的代码:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.firext.android.activities.work.WorkActivity">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<fragment
android:id="@+id/navigation_drawer"
android:name="com.firext.android.activities.work.navigationdrawer.NavigationDrawerFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="@+id/toolbar"
android:layout_below="@+id/toolbar"
android:layout_gravity="start"
android:layout_marginTop="?attr/actionBarSize"
tools:layout="@layout/work_navigation" />
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
是否有使用工具栏的特定原因?如果您只是像ActionBar一样使用它,为什么不使用ActionBar本身呢?那时问题就解决了。
我能想到的另一个解决方案是将抽屉显示在工具栏的顶部,这就像设计指南中所说的那样:http://www.google.com/design/spec/layout/structure.html#structure-side-nav-1