当设备旋转时调用 onDestroy 时线程会发生什么

发布于 2024-09-05 09:29:48 字数 138 浏览 5 评论 0原文

我想知道由活动创建的线程和设备旋转会发生什么。我观察到发生这种情况时会调用 onDestroy 方法。线程也会被杀死吗?

如果线程没有被终止,当轮换时创建活动的新实例时,如何将线程与活动重新关联。

谢谢,

拉克什米

I would like to know as to what will happen to the thread which has been created by an activity and the device is rotated. I have observed that the onDestroy method is called when this happens. Will the thread be killed too?

If the thread is not killed, how can I reassociate the thread with the activity as a new instance of the activity is created on rotation.

Thanks,

Lakshmie

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

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

发布评论

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

评论(1

稳稳的幸福 2024-09-12 09:29:48

线程没有被杀死。您可以通过覆盖 < 来保留对线程的引用code>onRetainNonConfigurationInstance() 保存线程对象,然后 getLastNonConfigurationInstance() 将其取回。

The thread is not killed. You can keep a reference to your thread by overriding onRetainNonConfigurationInstance() to save the thread object and then getLastNonConfigurationInstance() to get it back.

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