有没有办法区分正常的 Activity 破坏和旋转引起的破坏?

发布于 2024-11-03 03:58:29 字数 212 浏览 4 评论 0原文

我有一个启动一些异步任务的活动。我希望这些任务在我的 Activity “正常”销毁时停止(例如调用 finish() /用户按下后退按钮/等),但在用户仅旋转设备时继续运行。

取消这些任务并处理轮换效果很好,我只是无法将两者结合起来。

那么,有没有一种方法可以在“onDestroy()”回调期间告知 Activity 由于配置更改(旋转)或其他原因(例如后退按钮)而被销毁?

I have an Activity that start some asynctasks. I want these tasks to stop, when my Activity is destroyed "normally" (like calling finish() / the user pressing the back button / etc.), but continue running when the user only rotates the device.

Canceling these tasks, and handling the rotation works just fine, I just can't combine the two.

So is there a way to tell during the "onDestroy()" callback, that the Activity is destroyed because of a configurational change (rotation), or because of some other cause (back button e.g.)?

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

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

发布评论

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

评论(1

格子衫的從容 2024-11-10 03:58:29

您可以调用 isChangingConfigurations() 在您的活动上。

You can call isChangingConfigurations() on your Activity.

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