No, there is no need to call the superclass. If you take a look at the AsyncTask
source, you will see that the super class does nothing:
@SuppressWarnings({"UnusedDeclaration"})
protected void onPostExecute(Result result) {
}
No, there is no need to call the superclass. If you take a look at the AsyncTask
source, you will see that the super class does nothing:
@SuppressWarnings({"UnusedDeclaration"})
protected void onPostExecute(Result result) {
}