I\'m having a look at the \"Tab Layout\" tutorial which is perfectly clear and my question is very simple : is it possible to create tabs with no icon, just a single title?<
TabSpec laboratorySpec = tabHost.newTabSpec("Laboratory"); laboratorySpec.setIndicator("Laboratory"); Intent laboratoryIntent = new Intent(this, LaboratoryActivity.class); laboratorySpec.setContent(laboratoryIntent);
worked for me