如何以编程方式设置选项卡的位置?
我正在使用 tab-host 开发一个示例应用程序,并且我已经实现了它。 这是我的问题吗?我将分步骤描述它。
- 假设有 5 个选项卡,位置分别为 0、1、2、3、4。当我选择第四个选项卡时,应将其替换为第二个选项卡。
我该如何克服这个问题?
I am developing an sample application with tab-host,and i have achieved it.
And here is my problem? i will describe it in steps.
- assume that there are 5 tabs with position 0,1,2,3,4.When i selected the fourth tab it should be replaced on second tab.
How can i overcome from this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我理解正确的话,那是很困难的
>编辑
您可以使选项卡不可见,
如下所示
如果你想在位置 0 处隐藏选项卡,则如下所示。
如果您想让它可见,则如下所示
,但如果您想删除旧选项卡并将其替换为新选项卡。然后就不知道可不可以
It is strait forward if I understood you correctly
> EDITS
You can make your tab's invisible
as
if you want to invisible tab at position 0 then it is as follow.
If you want make it visible it is as follow
but if you want to remove old tab and replace it with new. Then I don't know it is possible or not
您应该尝试这样做:
这应该将
pos1
位置的选项卡与pos2
位置的选项卡切换我还没有检查过,但它应该有效:)
You should try this:
This should switch tab in
pos1
position with tab inpos2
positionI have not checked it, but it should work :)