Android - which Activity methods require a super constructor?
问题 In most Android apps, onCreate() is overridden with the first bit of code being super.onCreate(savedInstanceState) and I know this gathers the savedInstanceState Bundle and is neccessary for compilation but what about all of the constructors? onResume() , onStop() , onStop() etc. Which overridden methods have important super constructors you need to include? Is there a list somewhere? I see the super constructors included in some code, not in others.. I have included them sometimes myself,