gpt4 book ai didi

生命周期方法的Android实现可以在做任何工作后调用父类(super class)实现吗?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:53:45 25 4
gpt4 key购买 nike

<分区>

Android documentation we have :

Note: Your implementation of these lifecycle methods must always call the superclass implementation before doing any work...

但是我见过把代码放在父类(super class)方法之后的情况,尤其是像onPause()、onStop()、onDestroy()这样的方法,例如:

@Override
protected void onPause() {
LocalBroadcastManager.getInstance(this).unregisterReceiver(mMessageReceiver);
super.onPause();
}

http://www.vogella.com/articles/AndroidBroadcastReceiver/article.html#ownreceiver_localbroadcastmanager

这两种方式都有效。那么,调用父类(super class)方法后把代码放在o之前有什么区别呢?正确的做法是什么?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com