如何使用 navigator.app.exitApp() 在手机间隙退出应用程序?
我有一个使用 sencha-touch & 构建的应用程序phonegap 但我不知道如何添加退出/停止功能来退出应用程序。在谷歌和其他网站上查看后,我得到了使用 navigator.app.exitApp()
的线索,但它不起作用。
我该如何解决这个问题?
笔记 : 我正在使用 - 音位间隙 1.3 - 煎茶触摸 1.1 - Galaxy 标签
提前致谢
I have an application built using sencha-touch & phonegap but I don't know how to add exit/stop function to exit the application. After looking arround in google and other sites I got clue to use navigator.app.exitApp()
but it didn't work.
How can I solve this?
Note :
I'm using
- phonegap 1.3
- sencha touch 1.1
- Galaxy tab
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请尝试以下代码,它在我的应用程序中运行良好:
Please try following code, it is working fine in my app:
在 HTML 文件中放入这样的内容:
链接到 JS 文件中这样的函数:
我知道语法比 Sencha 更像 JQM,但由于概念基本相同,因此您可以只在需要的地方进行编辑。
Put something like this in the HTML file:
That links to a function like this in your JS file:
I know the syntax is more JQM than Sencha, but since the concept is basically the same you can just edit where is needed.
请参阅此
您需要为后退按钮添加侦听器事件并关联一个函数。
将您的phonegap/cordova版本更新到最新版本并使用上面提供的代码是一个好主意。
See this
You need to add a listener event for the backbutton and associate a function.
It would be a good idea to update your phonegap/cordova version to the latest build and use the code provided above.
这段代码就像一个魅力:
This code like a charm: