I've implemented Tabhost from following code, the title seems to be in uppercase by default. How to place a lowercase title in the Tabhost ? 
Here's my code for Tabhost implementation.
TabHost tabHost =getTabHost() ;
      // Tab for public
       TabHost.TabSpec publiComp = tabHost.newTabSpec("Public");
       publiComp.setIndicator("Public");
       Intent publicIntent = new Intent(this, CompliancePublic.class);
       publiComp.setContent(publicIntent);
       // Tab for private
       TabHost.TabSpec privateComp = tabHost.newTabSpec("Private");
       privateComp.setIndicator("Private");
       Intent privateIntent = new Intent(this, CompliancePrivate.class);
       privateComp.setContent(privateIntent);
       tabHost.addTab(publiComp);
       tabHost.addTab(privateComp);