TabHost.TabSpec allSpec = tabHost.newTabSpec(ALL_SERVICES);
allSpec.setIndicator("Hello World",getResources().getDrawable(R.drawable.icon_inbox));
intentServices = new Intent(this, InboxActivity.class);
allSpec.setContent(intentServices);
tabHost.add(allSpec);