代码之家  ›  专栏  ›  技术社区  ›  D.D.M.

以编程方式关闭选项卡选项卡主机

  •  0
  • D.D.M.  · 技术社区  · 12 年前

    如何关闭TabHost中的选项卡?(我的选项卡此活动)。 当我尝试:

    tabHost.removeViewAt(tabHost.getCurrentTab());
    

    我的应用程序崩溃了。

    1 回复  |  直到 12 年前
        1
  •  3
  •   Paul    12 年前

    这应该起作用:

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

    哪里 tab_index 是要删除的选项卡的索引。