I'm aware that API 3 doesn't allow a view to be set for a tab, but I still need to modify the TextView displayed as the indicator. I'd also like to change the Drawable for the tab, but I don't see a way to do it without a custom tab view as allowed in 1.6, API 4.
Working with this generic example below, is there way to retrieve the TextView and modify its properties or change the drawable?
TabHost tabHost = getTabHost();
TabHost.TabSpec spec;
spec = tabHost.newTabSpec("nearby")
.setIndicator("Nearby Activity")
.setContent(R.id.nearby_list);
tabHost.addTab(spec);
spec = tabHost.newTabSpec("friends")
.setIndicator("Friends & Favorites")
.setContent(R.id.friends_list);
tabHost.addTab(spec);
tabHost.setCurrentTabByTag("nearby");
Thanks for any help.