嗨,我想删除工具栏下面的阴影,因为我已经使用了height属性,
目前我的代码是

<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>

输出为:

android - 设置应用程序:elevation =&#34;0dp&#34; then hamburgermenu not showing to toolbar时-LMLPHP

在这里,我不想下面的阴影,所以我设置
    app:elevation="0dp"

到AppBarLayout,
然后它删除了阴影,但是HamburgerMenu消失了。
新的输出如下:
android - 设置应用程序:elevation =&#34;0dp&#34; then hamburgermenu not showing to toolbar时-LMLPHP

谁能告诉我如何在不隐藏/消失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();

关于android - 设置应用程序:elevation ="0dp" then hamburgermenu not showing to toolbar时,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41931245/

10-10 16:05