提升不适用于BottomNavigationView

时间:2017-03-03 22:11:53

标签: android android-elevation bottomnavigationview

我的BottomNavigationView上的提升并不是一件事,当我启动我的应用程序时,所有其他UI组件都获得了特定的高度,但是BottomNavigationView。

这是XML:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <FrameLayout
        android:id="@+id/main_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/bottom_navigation"
        android:layout_alignParentTop="true">
    </FrameLayout>

    <android.support.design.widget.BottomNavigationView
        android:elevation="8dp"
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:itemBackground="@color/white"
        app:itemIconTint="@drawable/nav_item_color_state"
        app:itemTextColor="@drawable/nav_item_color_state"
        android:layout_alignParentBottom="true"/>

</RelativeLayout>

我该怎么办?

注意:没有颜色是透明的。

2 个答案:

答案 0 :(得分:1)

您应该使用名称空间Try this code. ` var div = document.getElementById('myDiv'); div.addEventListener('click', function(e){ e.preventDefault(); // Your code here }); ` 并使用xmlns:app="http://schemas.android.com/apk/res-auto"代替app:elevation = "8dp"

答案 1 :(得分:0)

向下绘制阴影(从视图的底部),如果您尝试显示android:elevation="8dp",则可以看到Snackbar已应用,您将无法看到它。

如果您想添加将从BottomNavigationView顶部显示的阴影,您需要绘制它manually