如何在 Delphi Firemonkey 移动应用程序中检测 iOS 上的应用程序何时未从后台重新打开?
我正在 Android 和 iOS 平台上开发一个 Delphi 移动应用程序,我想在应用程序首次启动时执行一些操作,但不从后台打开。
我尝试过使用 if AAppEvent <> TApplicationEvent.WillBecomeForeground
但当我第一次启动应用程序时,该声明似乎不正确。有什么方法可以让我检测应用程序何时首次启动以及应用程序何时从后台打开?
I am developing a Delphi mobile app on both Android and iOS platforms where I want to carry out some action when the app is first launched, but not open from the background.
I have tried using if AAppEvent <> TApplicationEvent.WillBecomeForeground
but it seems like the statement is not true when I first launch the app. Is there any way to let me detect when the app is first launched and when the app is opened from the background?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是示例代码:
This is a sample code :