Android:从 onDestroy() 恢复后,onclicklistener 没有响应

发布于 2024-12-11 06:20:11 字数 117 浏览 0 评论 0原文

我不知道这些是否相关,但我有一个应用程序在从 onDestroy() 恢复后不允许我单击其中一个按钮,

这是一个已知问题吗?监听器设置为 onCreate()

并且永远不会设置为 null

I don't know if these are related yet, but I have an app that won't let me click one of the buttons after resuming from onDestroy()

is this a known issue? the listeners are set onCreate()

and never set to null

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

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

发布评论

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

评论(1

转瞬即逝 2024-12-18 06:20:11

onDestroy 是生命周期的结束一项活动。这意味着下次打开您的活动时,它不会“恢复”,而是会被创建。这可能有点令人困惑,因为即使活动正在重新创建, onResume 仍然会被调用。您可能想查看活动生命周期更好地描述当您的活动在不同的活动状态之间移动时实际发生的情况。

onDestroy is the end of the life cycle for an activity. This means that the next time your activity is opened it is not "resumed" it is being created. This may be a bit confusing because even though the activity is being recreated onResume is still called. You might want to take a look at the activity lifecycle for a better description of what is actually happening as your activity moves through the different activity states.

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