我可以在 TabActivity 之上添加一个视图存根吗?
我的选项卡活动中有四个选项卡,并且无论当前选项卡选择如何,我都需要一个在选项卡活动顶部带有三个按钮的工具栏。
我可以为此使用viewstub吗?
谁能帮助我实现这一目标?
I am having four tabs in my tab activity and I need a toolbar with three buttons on top of tabactivity irrespective of current tab selection.
Can I use viewstub for this?
Could anyone help me to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里,id 为“tabcontent”的框架布局是我们选项卡内容所在的位置。无论选择哪个选项卡,在此框架布局之外放置的内容都将位于选项卡活动中。
如果您查看 xml 的顶部,您可以看到 id 为“header”的线性布局。这是我制作的标题布局,它将始终在选项卡布局中可见。您可以通过放置按钮而不是像我所做的那样放置文本视图来创建工具栏。
Here the framelayout with id 'tabcontent' is where the content of our tab goes to. What ever you put outside this framwlayout will be in the tab activity irrespective of the tab selected.
If you look on the top of the xml you can see a linearlayout with id 'header'. This is a heading layout that I made which will always be visible in the tab layout. You can do the same to create a toolbar by putting buttons instead of textviews like ive done.
只是把你的工具栏放在布局中,有什么问题吗?
Just put your toolbar in the layout, what's the problem?