As you can read in the title, i'd like to change dynamically the label in my tabs. The thing is, im using a ta host and tabspec to create my tabs, here an example of a tab :
TabSpec sourceSelect = tabHost.newTabSpec("Source Select");
// setting Title and Icon for the Tab
sourceSelect.setIndicator("Source Select");
final Intent selectIntent = new Intent(this, FileListActivity.class);
sourceSelect.setContent(selectIntent);
When i come and say sourceSelect.setText("") it wont do anything, it compiles tho.
Any ideas ?
Thanks!