嗨,我正在開發一個帶有3個選項卡的應用程序。一旦我點擊第三個標籤,我想加載一個沒有tabbar的活動......我該怎麼做?來自Fragment Tab的Android加載活動
view = inflater.inflate(R.layout.myview, null);
mTabHost.addTab(mTabHost.newTabSpec("tab3").setIndicator(view),
MyClass.class, null);
嗨,我正在開發一個帶有3個選項卡的應用程序。一旦我點擊第三個標籤,我想加載一個沒有tabbar的活動......我該怎麼做?來自Fragment Tab的Android加載活動
view = inflater.inflate(R.layout.myview, null);
mTabHost.addTab(mTabHost.newTabSpec("tab3").setIndicator(view),
MyClass.class, null);
請嘗試下面的代碼。這裏是Complete Example
Intent intentAndroid = new Intent().setClass(this, MyClass.class);
TabSpec tabSpecAndroid = tabHos.newTabSpec("tab3")
.setIndicator("", ressources.getDrawable(R.drawable.icon_android_config))
.setContent(intentAndroid);
mTabHost.addTab(tabSpecAndroid);
感謝Ketan回答我的問題..但我需要使用標籤的framents,只有第三個標籤點擊我想要加載爲一個活動(沒有標籤欄) –
爲什麼不使用操作欄? –
在你的標籤適配器中,你必須有一個方法來跟蹤標籤上的點擊。你可以檢查「如果」當前標籤,而不是通常的東西,你必須加載一個新的活動,不包含標籤 –