我在 onDestroy() 片段方法中调用 API,但是当我关闭应用程序时,它不会调用

发布于 2025-01-13 12:46:13 字数 79 浏览 0 评论 0原文

在退出应用程序之前,如何使用 kotlin-coroutines 调用片段内的 API?

事实上,我希望在离开应用程序之前调用它。

How do I call an API inside fragment using kotlin-coroutines before exiting the application?

In fact, I want it to be called before leaving the application.

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

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

发布评论

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

评论(1

风蛊 2025-01-20 12:46:13

Android 应用程序与常规桌面应用程序不同; Android 操作系统通过调用 onDestroy() 来决定何时“关闭”它们。这种情况可能会在您按下系统后退按钮后立即发生,也可能在数小时后发生,或者永远不会发生。

一个可能的选择是使用 onPause()onStop(),指示用户何时停止与片段交互。但用户可能会开始与您在应用程序中定义的另一个片段或活动进行交互。

某些应用程序会监听后退按钮的按下情况,并要求确认“退出应用程序”,然后再进行尽可能多的内部清理。但这违反了 Android UX 指南。

Android apps are not like regular desktop apps; the Android OS decides when to "close" them by calling onDestroy(). This can happen right after you press the system Back button, or hours later, or never.

A possible option is to use onPause() or onStop(), indicating when the user stops interacting with your fragment. But the user might start interacting with another fragment or activity you may have defined in your app.

Some apps listen to the back button press and ask for confirmation to "exit the app" before doing as much internal cleanup as possible. But it goes against the Android UX guidelines.

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