How to create an optionsMenu in an Android's TabActivity -


i try create options menu in tabactivity.

but instead of see every activity within tabbar own options menu.

is possible change behaviour? , if yes, how?

thank you

ok. think know solution.

if there oncreateoptionsmenu in activity within tabbar, should modified bit:

@override public boolean oncreateoptionsmenu(menu menu) {     // activity withing tabactivity     if (getparent() != null)      {         return getparent().oncreateoptionsmenu(menu);     }     ... } 

Comments

Popular posts from this blog

python - Does anyone know how to configure the hunpos wrapper class on nltk? -

mysql - How to insert just year and month into date field? -