S60 应用程序 - Symbian C++ - 退出按钮不起作用
在我的 Symbian S60 应用程序中,我的选项菜单按预期工作。 但退出按钮没有任何作用。
我正在使用 Carbide 进行开发,并使用 UI 设计器将项目添加到选项菜单中。
有谁知道如何启用退出按钮,或者为什么它可能不起作用?
谢谢!
In my Symbian S60 application, my Options menu works as expected. But the Exit button does nothing.
I am developing with Carbide and have used the UI Designer to add items to the options menu.
Does anyone know how to enable the exit button, or why else it might not work?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否正在处理(在
appui::HandleCommandL
中)命令 IDEEikCmdExit
和EAknSoftkeyExit?
Are you handling (in your
appui::HandleCommandL
) command idsEEikCmdExit
andEAknSoftkeyExit?
您是否查看过应用程序的
AppUi
类的HandleCommandL( TInt aCommand )
方法? 例如,在我使用 Carbide 创建的所有 UI 项目中,以下内容会自动出现在HandleCommandL()
方法中:Have you looked inside the
HandleCommandL( TInt aCommand )
method of theAppUi
class of your application? For example, in all UI projects I create with Carbide, the following is automatically present inside theHandleCommandL()
method:您使用什么 CBA 资源(软键按钮布局)?
R_AVKON_OPTIONS_EXIT
? 您是否以其他方式处理退出命令? 或者您是否正在捕获Exit()
调用? 您是否收到了 EEikCmdExit 代码? 如果您有commandHandled
布尔值< /a>,是否设置为EFalse
?What CBA resource (softkey buttons layour) are you using?
R_AVKON_OPTIONS_EXIT
? are you handling the the exit commands in any other way? or are you traping theExit()
call? Are you even receiving the theEEikCmdExit
code? If you have thecommandHandled
boolean, is it set toEFalse
?命令正在我的主视图中处理,
所以我将其更改为这样......
谢谢大家:)
Commands were being handled in my main view
So I changed it to this...
Thanks all :)