HI,
I want to call onCretaeOptionsMenu in my code, i have implemented my code like this :
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
menu.add(0, 0, 0, "First");
menu.add(0, 1, 1, "Second");
return super.onCreateOptionsMenu(menu);
}
But onCreateOptionsMenu is not at all calling, Can anyone help me on this ?


