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
Post a Comment