java - Bottom Navigation Icon color change -
i using bottomnavigation this when try change bottom navigation icon colors black background not change color.
bottomnavigation.setaccentcolor(color.parsecolor("#ffe4770a")); bottomnavigation.setinactivecolor(color.white); bottomnavigation.setbackgroundcolor(color.black);
but when tried background changes icon color.
bottomnavigation.setaccentcolor(color.parsecolor("#ffe4770a")); bottomnavigation.setinactivecolor(color.white);
how fix it? changes icon color color background.
according documentation of ahbottomnavigation repo, setbackgroundcolor()
override accent colors icons.
replace setbackgroundcolor()
setdefaultbackgroundcolor()
:
bottomnavigation.setdefaultbackgroundcolor(color.black);
Comments
Post a Comment