本文介绍了关闭标签编程TabHost的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我怎么能在TabHost关闭标签? (我的标签此活动)。
当我尝试:
How can I close tab in TabHost? (My tab this Activity).When I try:
tabHost.removeViewAt(tabHost.getCurrentTab());
我的应用程序crashs。
My app crashs.
推荐答案
这应该工作:
<$c$c>tabHost.getTabWidget().removeView(tabHost.getTabWidget().getChildTabViewAt(tab_index));$c$c>
其中, tab_index
是您要删除的选项卡的索引。
Where tab_index
is the index of the tab that you want to remove.
这篇关于关闭标签编程TabHost的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!