I want to get rid of the default indicator to achieve the same result when a tab is selected (no indicator). I've tried:
TabHost.TabSpec specs = tabHost.newTabSpec("").setIndicator("").setContent(intent);
TabHost.TabSpec specs = tabHost.newTabSpec("").setIndicator("",null).setContent(intent);
But none of this worked. How can I remove that indicator?
Thanks for your time.