安卓开发com.ashokvarma.bottomnavigation.BottomNavigationBar有人知道这个点击效果怎么去掉吗?
尝试用app:bnbBackgroundStyle="background_style_static"无效果,BottomNavigationBar版本2.2.0

安卓开发com.ashokvarma.bottomnavigation.BottomNavigationBar有人知道这个点击效果怎么去掉吗?
尝试用app:bnbBackgroundStyle="background_style_static"无效果,BottomNavigationBar版本2.2.0

阿里嘎多学长整理AIGC生成,因移动端显示问题导致当前答案未能完全显示,请使用PC端查看更加详细的解答过程
你想要去掉 BottomNavigationBar 的点击效果,尝试使用以下配置:
<com.ashokvarma.bottomnavigation.BottomNavigationBar
app:bnbBackgroundStyle="bottom_navigation_no_selection"
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
这里使用了 app:bnbBackgroundStyle="bottom_navigation_no_selection" 属性来去掉点击效果。