OfficialFoldingTabBar.Android
OfficialFoldingTabBar.Android copied to clipboard
Unable to change menu color: any custom tag to change menu color?
Is there any way to change the menu color from green to color of our own choice?
Hi, the same question here. How do I set the color for bar?
Seems you do not provide any public setter for "ftb_main_color" property defined in resources.
In case anyone else has this problem, you can set the background color programmatically.
GradientDrawable background = (GradientDrawable)tabBar.getBackground();
background.setColor(Color.BLUE);
You can replace blue with any color you want.