If I use a custom view to set the tab icon/indicator, how could I specify the view or the specify the one when the tab is selected? (There's a reason I cannot use string with a drawable resource that contains selector/items with different images for different states)
View tabview = createTabView(mTabHost.getContext());
TabHost.TabSpec tabSpecProjectUpdates = mTabHost
.newTabSpec("ProjectUpdates")
.setIndicator(tabview)
Do I need to make changes onTabChange event specifically? Can I keep it custom without polluting the code with more event listeners?