如何删除底部导航阴影

时间:2020-02-09 09:44:51

标签: android bottomnavigationview

如下图所示,我想消除底部导航的阴影。 enter image description here

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

Android: remove shadow from bottom navigation

这是我的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"/>

2 个答案:

答案 0 :(得分:3)

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

app:elevation="0dp"

答案 1 :(得分:0)

将此行放入onCreate()方法

getSupportActionBar().setElevation(0);