What is the call order of oncreateoptionsmenu() in the android activity lifecycle?

Dhruva Bharadwaj picture Dhruva Bharadwaj · Mar 12, 2014 · Viewed 7.6k times · Source

Is onCreateOptionsMenu() of action bar called before or after the onStart() of activity?

Answer

ElectronicGeek picture ElectronicGeek · Mar 12, 2014

onStart() is called first. (I tried putting log messages in the methods).

enter image description here