I want to change selection color of tab widget in my app. I Checked many answers & links but only able to change color of whole tab.
Following is what I want:
I want to change default blue selection color with green only. And not color of whole tab. What and how should i do in order to accomplish this ?
Edit : Following way i'm creating tabs.
mTabHost.addTab(mTabHost.newTabSpec("Contacts").setIndicator("Contacts"), ContactFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("Favorite").setIndicator("Favorite"), FavoriteFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("Group").setIndicator("Group"), GroupFragment.class, null);