I have a Tabhost
host.addTab(host.newTabSpec("Settings")
.setIndicator("Settings", getResources().getDrawable(R.drawable.icon_wrench))
.setContent(new Intent(this,Settings.class)));
I created a tab with tab indicator of Settings at first, but later on I like to change the indicator name to something else. What I would do that without changing other stuffs? I don't need to destroy the current tab and its content and rebuild a new one just to change the indicator name right?