标签: android tabs android-tabhost
如何在TabHost中关闭标签? (我的标签这个活动)。 当我尝试:
tabHost.removeViewAt(tabHost.getCurrentTab());
我的应用崩溃了。
答案 0 :(得分:2)
这应该有效:
tabHost.getTabWidget().removeView(tabHost.getTabWidget().getChildTabViewAt(tab_index));
其中tab_index是您要删除的标签的索引。
tab_index