如何去除底部导航阴影

How to remove bottom navigation shadow

如下图所示,我想删除 bottomnavigation 的阴影。

我尝试了以下解决方案,发现其中的名词很有用:

这是我的 xml 文件:

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/main_navigation"
    android:layout_width="match_parent"
    android:layout_height="56dp"
    android:background="#ffffff"
    android:theme="@style/Widget.BottomNavigationView"
    app:menu="@menu/botton_navigation_menu"
    android:layout_above="@+id/phone_frame"
    android:elevation="0dp"/>

将这一行放在 onCreate() 方法中

getSupportActionBar().setElevation(0);

您必须使用 app:elevation 而不是 android:elevation

app:elevation="0dp"