有没有办法区分正常的 Activity 破坏和旋转引起的破坏?
我有一个启动一些异步任务的活动。我希望这些任务在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调用
isChangingConfigurations()
在您的活动
上。You can call
isChangingConfigurations()
on yourActivity
.