I'm looking at the Notepad tutorial from the Android developer's site. I have a question about overridden functions calling the super-class of activities. For example,

public class Notepadv3 extends ListActivity {
    ...

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    super.onCreateOptionsMenu(menu);
    menu.add(0, INSERT_ID, 0, R.string.menu_insert);
    return true;
    }
}

What's the point of the super.onCreateOptionsMenu()? I looked at the developer's site and found this explanation:

Call super.onCreateOptionsMenu(menu) so the original menu items are created, then add new menu items with menu.add().

But what original menu items are there?

Similarly, what's the point of other super.(overridden_function), such as super.onCreateContextMenu?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Activities have a number of operations they perform throughout their life cycle - some of these are house cleaning (garbage collection), UI stuff, etc.

As far as I know, super.onCreateContextMenu() doesn't have to be called, unlike methods like onCreate, onResume, etc.

link|improve this answer
Thanks Berdon. So super.onCreate() is necessary for life cycle management? – xiongtx Aug 6 '11 at 18:40
Yeah. Infact, if you don't call it a RuntimeException is thrown to let you know :). – Berdon Aug 6 '11 at 18:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.