androidandroid-layoutandroid-toolbarandroid-appbarlayout

How I can remove shadow or divider from bottom of AppBar layout or Toolbar?


enter image description here

I wants to remove shadow or divider from bottom of AppBar layout or Toolbar

Here is my xml code

elevation, actionBarDivider already tried.

<com.google.android.material.appbar.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:elevation="0dp"
            android:theme="@style/AppTheme.AppBarOverlay">

            <androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="@color/colorPrimaryDark"
                app:popupTheme="@style/AppTheme.PopupOverlay" />

 </com.google.android.material.appbar.AppBarLayout>

Solution

  • Set elevation 0(Zero) dp (ex: android:elevation="0dp" or app:elevation="0dp"), like below:

    <com.google.android.material.appbar.AppBarLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:elevation="0dp"
                android:theme="@style/AppTheme.AppBarOverlay">
    
                <androidx.appcompat.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    android:background="@color/colorPrimaryDark"
                    app:popupTheme="@style/AppTheme.PopupOverlay"
                     />
    
     </com.google.android.material.appbar.AppBarLayout>