這是我創建的 Tabhost
public class AppTabhost extends TabActivity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/**find tab host**/
TabHost tabHost = getTabHost();
/**add tabs**/
//tab 1
tabHost.addTab(tabHost
.newTabSpec("tab1")
.setIndicator("tab1")
.setContent(new Intent(AppTabhost.this, anotherActivity.class)));
//tab 2
tabHost.addTab(tabHost
.newTabSpec("tab2")
.setIndicator("tab2")
.setContent(new Intent(AppTabhost.this, theotherActivity.class)));
}
我想把這兩個Tab放在程序中每個Activity的底部。
怎麼設置啊?
你可以設置一個intent,比如:Intent I= new Intent(this, Apptabhost.class); startIntent(I);
我建議定義一個tabhost的繼承類,不是tabhost activity。
因為view hiarchy包含view而不是activities。