How to change color of tab when its selected, see below screen shot:
i am showing Orange color in ActionBar, in a same way i wanna show orange color in place of ligh
myTabHost.setOnTabChangedListener(new TabHost.OnTabChangeListener(){ @Override public void onTabChanged(String tabId) { int tab = myTabHost.getCurrentTab(); View view = myTabHost.getTabWidget().getChildAt(tab).setBackgroundColor(Color.CYAN); } });