【发布时间】:2017-09-25 12:02:52
【问题描述】:
【问题讨论】:
-
尝试将海拔设置为0。
标签: android android-layout bottomnavigationview
【问题讨论】:
标签: android android-layout bottomnavigationview
使用 app:elevation="0dp" 隐藏底部导航的阴影
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@android:color/white"
app:elevation="0dp"
app:menu="@menu/bottom_navigation_main" />
【讨论】:
如果您使用的是 Api-level 28 以上,则可以使用
android:outlineAmbientShadowColor="@android:color/transparent"
android:outlineSpotShadowColor="@android:color/transparent"
【讨论】: