Android:Android 中完整应用程序的自定义标题栏?
在我的应用程序中,我有一个 tabView ,带有 5 个选项卡按钮。我需要为我的应用程序中的所有视图提供一个自定义标题栏。是否可以为我的所有视图提供通用标题栏
In my application i have a tabView , with 5 tab buttons. I need a custom title bar for all the views in myapplication .Is it possible to have common titlebar for all of my views
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以做到,但是你需要在每个视图中至少编写一些2行代码。
在您的活动布局 XML 中,您可以使用
在您的 Activity onCreate 中,您将调用一个辅助方法来设置标题:
第三个参数可以是最初要突出显示的选项卡视图项的索引。
Can be done, but you need to write at least some 2 lines of code in each view.
In your Activities layout XML, you could use
And in your Activities onCreate, you would call a helper method to setup the header:
The 3rd param could be the index of the tabview item to highlight initially.