OfficialFoldingTabBar.Android icon indicating copy to clipboard operation
OfficialFoldingTabBar.Android copied to clipboard

Unable to change menu color: any custom tag to change menu color?

Open tech-brahman opened this issue 7 years ago • 2 comments

Is there any way to change the menu color from green to color of our own choice?

tech-brahman avatar Jun 08 '17 03:06 tech-brahman

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.

artemmihelson avatar Sep 27 '17 04:09 artemmihelson

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.

NashZhou avatar Jan 03 '18 01:01 NashZhou