NavigationTabBar
NavigationTabBar copied to clipboard
how can i set the background color of selected tab?
I also want to know
i am stuck on this point, i want to change the active background color of the tab but not finding a way to do. Anyone can tell me the solution?
Finally i found a way to change the background color of the selected tab by using static method of class Color.
Color.parseColor("#dd2a2a")
Example models.add( new NavigationTabBar.Model.Builder( getResources().getDrawable(R.drawable.tab2_categories), Color.parseColor("#dd2a2a") ).title("CATEGORIES") .build() );