当设置 app:elevation="0dp" 然后 hamburgermenu 不显示到工具栏

when set app:elevation="0dp" then hamburgermenu not showing to toolbar

您好,我想删除工具栏下方的阴影,因为我使用了高度 属性, 目前我的代码是

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/transparent">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"

            />
    </android.support.design.widget.AppBarLayout>


    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />


  </android.support.design.widget.CoordinatorLayout>

输出为:-

这里我不想要下面的阴影所以我设置了

    app:elevation="0dp" 

到 AppBarLayout, 然后它删除了阴影但 HamburgerMenu 消失了。 新的输出如下:-

谁能告诉我如何在没有 hiding/disappearing HamburgerMenu 的情况下去除阴影。

试试这个:

    <android.support.design.widget.AppBarLayout
            android:id="@+id/appBar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:elevation="0dp">
            ...
</android.support.design.widget.AppBarLayout>

然后在你的 activity;

findViewById(R.id.appBar).bringToFront();