BottomNavigationView遇到的问题及解决

<-- as直接创建navigation工程并未出现某些问题, 奇怪ing -->

1. 切换fragment时并未隐藏,背景控件重叠

给各fragment加上背景 :

android:background = ...
2. 控件会产生穿透事件,如frag1的控件并未显示,在frag2中点击frag1中控件位置能唤起点击事件

在frag中添加

    android:clickable="true"
    android:focusable="true" 
3. 主题色会覆盖nav_icon颜色
app:itemIconTint="@null"

或者修改主题色
--- 使用本地nav_icon
menu菜单中给item设置selector

android:icon="@drawable/bottom_game_selector"
4. 修改导航title颜色

在xml里的BottomNavigationView中添加

app:itemTextColor="@drawable/bottom_text_color"
完整demo可参照

GitHub链接

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。