以编程方式关闭选项卡TabHost

时间:2012-09-25 17:20:17

标签: android tabs android-tabhost

如何在TabHost中关闭标签? (我的标签这个活动)。 当我尝试:

tabHost.removeViewAt(tabHost.getCurrentTab());

我的应用崩溃了。

1 个答案:

答案 0 :(得分:2)

这应该有效:

tabHost.getTabWidget().removeView(tabHost.getTabWidget().getChildTabViewAt(tab_index));

其中tab_index是您要删除的标签的索引。