TabHost tabHost = getTabHost();



// 创建第一个Tab页

TabHost.TabSpec tabSpec1 = tabHost.newTabSpec(\"首页\")

        .setIndicator(\"首页\");

tabSpec1.setContent(new Intent(this, HomeActivity.class));

tabHost.addTab(tabSpec1);



// 创建第二个Tab页

TabHost.TabSpec tabSpec2 = tabHost.newTabSpec(\"消息\")

        .setIndicator(\"消息\");

tabSpec2.setContent(new Intent(this, UserMSGActivity.class));

tabHost.addTab(tabSpec2);