如何在 tabWidget 中没有视图的情况下将选项卡添加到 tabHost 中?
我想在 tabHost 中隐藏 1 个选项卡指示器视图,因为我将使用另一个按钮来完成此操作。当我以这种方式隐藏它时,问题就出现了:
getTabHost().getTabWidget().getChildTabViewAt(3).setVisibility(View.GONE);
然后分隔符仍然出现在 tabWidget 中。
知道我该怎么做吗?
谢谢。
I wanna hide 1 tab indicator View in a tabHost , cause i'll use another button to do it . The problem comes when i hide it this way:
getTabHost().getTabWidget().getChildTabViewAt(3).setVisibility(View.GONE);
Then the separators still appearing in the tabWidget .
Any idea of how can i do it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没说错的话,您想更改 tabIndicator 的视图。
如果是这样,则在添加 tab 时使用
setindicator(view)
。在 ApiDemoes 中获取更多帮助
tabs1.java
。If i am getting you right , you want to change view of tabIndicator .
if so then use
setindicator(view)
at the time of adding tab .for more help
tabs1.java
in ApiDemoes .