【发布时间】:2017-01-31 01:06:57
【问题描述】:
当我尝试用黑色背景更改底部导航图标颜色时,我使用的是 BottomNavigation this,它不会改变颜色。
bottomNavigation.setAccentColor(Color.parseColor("#FFE4770A"));
bottomNavigation.setInactiveColor(Color.WHITE);
bottomNavigation.setBackgroundColor(Color.BLACK);
但是当我用背景尝试它时,它会改变图标颜色。
bottomNavigation.setAccentColor(Color.parseColor("#FFE4770A"));
bottomNavigation.setInactiveColor(Color.WHITE);
如何解决?它会根据颜色背景更改图标颜色。
【问题讨论】:
-
尝试使用
setDefaultBackgroundColor()而不是setBackgroundColor()
标签: java android xml navigation navigation-drawer