BottomNavigationView - Shadow and Ripple Effect

后端 未结 8 724
闹比i
闹比i 2020-12-14 08:41

I was really happy when BottomNavigationView was released one week ago but I am facing some problems which makes me unable to solve it, like to see a shadow over the BottomN

8条回答
  •  清歌不尽
    2020-12-14 09:15

    In the latest Material design library, it is super easy to change ripple color of item click in BottomNavigationView. Just add app:itemRippleColor="@color/your_color" in your BottomNavigationView. Here is the full code

    Add the dependency in build.gradle

    build.gradle

    implementation "com.google.android.material:material:$materialDesignVersion"
    

    activity_main.xml

    
    

提交回复
热议问题