应用程序中的 BlackBerry 选项屏幕
我想在黑莓应用程序中创建一个“选项”屏幕,因此在运行该应用程序时,他们单击黑莓按钮并有一个“选项”菜单项。我可以手动创建它,但我想知道是否有标准的方法来做到这一点,因为我注意到所有标准应用程序(联系人、日历、消息传递等)都有标准的外观和感觉。
请注意,我不是在谈论 OptionsManager/OptionsProvider - 这些是在全局设置中为应用程序提供选项,而不是在应用程序本身内。
I would like to create an "Options" screen in a blackberry application, so when running the application they click the blackberry button and have an "Options" MenuItem. I can create this manually, but I wonder if there's a standard way to do it, as I noticed all of the standard applications (contacts, calendar, messaging, etc) all have a standard look and feel.
Please note I am not talking about the OptionsManager/OptionsProvider - these are to provide options for the application in the global settings, not within the application itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,黑莓手机没有标准的选项屏幕。查看 Implement高级按钮、字段和管理器。他们的示例项目中有 FieldSet 组件,它允许创建与标准选项屏幕非常相似的布局和样式。
As I know, there is no standard option screen in BlackBerry. Take a look on Implement advanced buttons, fields, and managers. There is FieldSet component inside their sample project, it allows to create layouting and styling very similar to standard option screens.
您的意思是 CHANGE_OPTION 菜单项?
您可以使用 MenuItem.getPrefab(int) 与 MenuItem.CHANGE_OPTION 。
Do you mean the CHANGE_OPTION MenuItem?
You can use MenuItem.getPrefab(int) with MenuItem.CHANGE_OPTION.