In a class we have several methods overlapping with @Override
, and in some, for example onPreExecute
of an extended class of AsyncTask
, already comes with super.onPreExecute()
.
@Override
protected void onPreExecute() {
super.onPreExecute();
}
What would be this method super.nomeDoMetodo()
and when to leave this call to the method of the upper class?