host = (TabHost) findViewById(R.id.tabHost);
host.setup();
TabHost.TabSpec spec = host.newTabSpec("Tab user");
spec.setContent(R.id.tab1);
spec.setIndicator("" , getApplicationContext().getResources().getDrawable(R.drawable.i));
host.addTab(spec);
spec = host.newTabSpec("Tab chat");
spec.setIndicator("" , getApplicationContext().getResources().getDrawable(R.drawable.1));
spec.setContent(R.id.tab2);
host.addTab(spec);
host.setCurrentTab(0);

요 하늘색 선이요 !