Super One Natchitoches Louisiana - Sports

I have created an Android Application Project and in MainActivity.java > onCreate() it is calling super.onCreate(savedInstanceState). As a beginner, can anyone explain what is the purpose of the a... The one without super hard-codes its parent's method - thus is has restricted the behavior of its method, and subclasses cannot inject functionality in the call chain.

The one with super has greater flexibility. The call chain for the methods can be intercepted and functionality injected.