Blackberry OS 6 选项卡栏/工具栏
我已经搜索了几个小时,我刚刚开始进行 Blackberry OS 6 开发,完全陌生,它是从 iPhone 切换而来的。
我想知道是否有人可以给我一份关于如何使用一个全局工具栏/选项卡栏创建多视图应用程序的深入教程。
源代码会很棒,这样我就可以通读它并更好地理解它。
我创建了一个基本的应用程序,但我试图向其中添加一个全局工具栏/选项卡栏,但我只是在挣扎。
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不是“深入的教程”:),但是这里是开始的信息:
请注意,
ToolbarManager
是自 OS 6 起可用。因此,对于以前的操作系统,您需要创建自定义Manager
来保存按钮并将该管理器放入状态部分MainScreen
(使用MainScreen.setStatus(Field status)
)。This is not "a deep in depth tutorial" :), however here is the info to start with:
Note the
ToolbarManager
is availble since OS 6. So for a previous OS you will need to create your customManager
to hold the buttons and to place that manager into status section of theMainScreen
(using theMainScreen.setStatus(Field status)
).ToolBar 仅在 OS 6.0 中可用,因为我使用 5.0+ 作为基本版本。
我需要手动实现选项卡栏。
我是这样写的。
http://aliirawan-wen.blogspot.com /2011/05/implementing-tab-control-in-blackberry.html
在 OS 6.0 中,您可以简单地使用工具栏组件,或者使用您自己的代码
ToolBar is only available in OS 6.0, since I'm using 5.0+ as the base version.
I need to implement the Tab Bar manually.
Here's how I write it.
http://aliirawan-wen.blogspot.com/2011/05/implementing-tab-control-in-blackberry.html
In OS 6.0 you can simply using the Toolbar component, or doing with your own code