Android : The use of super in onCreate

on Friday, October 31, 2014


I have seen this line of code in almost every example i have looked at. Right after onCreate is created super.onCreate is called with the same arguements. What does this line do? what is its purpose?



protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); //the line in question
.....
}

0 comments:

Post a Comment