超类android生命周期
为什么需要在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它确保调用整个类层次结构中的任何相关生命周期管理代码。
如果您有扩展
Activity
的MyBaseActivity
和扩展MyBaseActivity
的MySpecificActivity
,请调用每个级别的超类意味着 MyBaseActivity 仍然能够响应生命周期事件。It makes sure that any relevant lifecycle management code across the full class hierarchy gets invoked.
If you have
MyBaseActivity
that extendsActivity
, andMySpecificActivity
that extendsMyBaseActivity
, calling through to the lifecycle methods in the superclass at each level meansMyBaseActivity
will still be able to respond to lifecycle events.