如何删除工具栏的阴影,所以它看起来不像重叠

时间:2016-11-14 11:02:23

标签: android android-toolbar

the toolbar is overlappig

我的工具栏和操作栏代码:

<android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#00000000"
        android:theme="@style/AppTheme.AppBarOverlay"


        >

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Dark" />

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

如果我添加app:elevation =&#34; 0dp&#34;在appbar上菜单将消失。

1 个答案:

答案 0 :(得分:0)

试试这个

<View xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="@dimen/statusBarHeight"
    android:background="@color/accueil_colorDark"
    android:elevation="@dimen/statusBarElevation"/>

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:popupTheme="@style/AppThemeAccueilToolbar"
    android:theme="@style/AppThemeAccueilToolbar"
    android:id="@+id/toolbarAccueil"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?attr/actionBarSize"
    materialdesign:elevation="0dp"
    android:elevation="0dp"
    android:outlineProvider="background"
    android:layout_marginTop="@dimen/appBarTopMargin" >

</android.support.v7.widget.Toolbar>