0
我在我的應用程序中使用android選項卡。我有一個主要的課程,我在那裏輸入我的標籤。有4個選項卡,所以我有每個1個Java類。但在每個標籤中,我也會去其他意圖。當我從一個選項卡移動到其他意圖時,選項卡視圖消失。我希望我的標籤保留在所有課程和所有視圖中。我應該爲此做些什麼。所以這是我主代碼類的代碼。Android TabHost問題
意圖intent1; 意圖intent2; 意圖intent3; 意圖intent4;
intent1 = new Intent().setClass(this, x.class);
spec = tabHost
.newTabSpec("x")
.setIndicator("x",
tabHost.addTab(spec);
intent2 = new Intent().setClass(this, y.class);
spec = tabHost
.newTabSpec("y")
.setIndicator("y",
tabHost.addTab(spec);
intent3 = new Intent().setClass(this,z.class);
spec = tabHost
.newTabSpec("z")
.setIndicator("z",
tabHost.addTab(spec);
intent4 = new Intent().setClass(this, a.class);
spec = tabHost
.newTabSpec("a")
.setIndicator("a",
tabHost.addTab(spec);