我的应用程序从睡眠或挂起状态唤醒后无法运行

发布于 2024-12-27 21:26:12 字数 588 浏览 1 评论 0原文

当设备进入睡眠状态时,我的 Corona 应用程序无法运行。没有按钮,没有任何反应来继续我的游戏。 我使用以下代码来跟踪系统事件 。当屏幕关闭时,它会打印 applicationSuspend 但在屏幕打开后,它永远不会打印“applicationResume” [使用 android adb eclipse 显示打印消息]

 local function onSystemEvent( event )

 if( event.type == "applicationExit" ) then
  print("applicationExit")
    db:close()
  elseif event.type == "applicationSuspend" then

   print("applicationSuspend")
    elseif event.type == "applicationResume" then
      print("applicationResume")
   elseif event.type == "applicationStart" then
  print("applicationStart")
end
end

有什么解决方案吗?

My corona app is not working when device go to sleep state. no buttons nothing is responding to continue my game.
I used following code to keep track the system event
. When screen off it prints applicationSuspend but after screen on it never prints the "applicationResume" [Used android adb eclipse to display print messages]

 local function onSystemEvent( event )

 if( event.type == "applicationExit" ) then
  print("applicationExit")
    db:close()
  elseif event.type == "applicationSuspend" then

   print("applicationSuspend")
    elseif event.type == "applicationResume" then
      print("applicationResume")
   elseif event.type == "applicationStart" then
  print("applicationStart")
end
end

Any Solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

箹锭⒈辈孓 2025-01-03 21:26:12

我确信 Kikito 已经指出了;我们可能需要先拥有它内部的功能,然后才能提供更多帮助。

据我所知,此事件类型只能在 a:

local function onSystemEvent( event )

   print( "System event name and type: " .. event.name, event.type )
end

Runtime:addEventListener( "system", onSystemEvent )

Styled 函数内使用。

你就是这样使用的吗?

As I'm sure Kikito was pointing out; We probably need to have the function it's inside before we can help more.

as far as I know, this event type can only be used inside a:

local function onSystemEvent( event )

   print( "System event name and type: " .. event.name, event.type )
end

Runtime:addEventListener( "system", onSystemEvent )

Styled function.

Is this the way you're using it?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文