超类android生命周期

发布于 2024-10-24 23:30:51 字数 91 浏览 2 评论 0原文

为什么需要在android生命周期中调用超类?例如,在onCreate中你需要调用super.onCreate,或者onDestroy super.onDestroy。

Why is it that you need to call the super class in the android lifecycle? For example, in onCreate you need to call super.onCreate, or onDestroy super.onDestroy.

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

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

发布评论

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

评论(1

仲春光 2024-10-31 23:30:51

它确保调用整个类层次结构中的任何相关生命周期管理代码。

如果您有扩展 ActivityMyBaseActivity 和扩展 MyBaseActivityMySpecificActivity,请调用每个级别的超类意味着 MyBaseActivity 仍然能够响应生命周期事件。

It makes sure that any relevant lifecycle management code across the full class hierarchy gets invoked.

If you have MyBaseActivity that extends Activity, and MySpecificActivity that extends MyBaseActivity, calling through to the lifecycle methods in the superclass at each level means MyBaseActivity will still be able to respond to lifecycle events.

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