我们可以在一个应用程序中拥有 2 个 tabview android
在我的应用程序中,我需要有 2 个 tabView,一个位于顶部,另一个位于底部,就像 iPhone 应用程序一样。在android中我们可以有相同的观点吗?请指导?
In my App I m required to have 2 tabViews one at top and the other is at bottom like i-phone apps. In android can we have the same views? please guide?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Android 中,您可以在选项卡中添加选项卡。您可以创建一个选项卡,并在第一个选项卡上提供第二个选项卡的 TabActivity。因此,当您打开该选项卡时,它还会有另一个选项卡。
You can have a Tab inside a Tab in Android. You can create a Tab and on the First Tab give the TabActivity of the second Tab. So, when you will open the Tab it will have another Tab also.
是的,您可以拥有它。您唯一需要做的就是将第二个选项卡主机添加为第一个选项卡中的一个选项卡的子选项卡。我已经尝试过一次所以它应该有效。
Yes, you can have it.The only thing you need to do is to add the second tabhost as the child of one of the tabs in your first one. I've tried that once so it should be working.