Skip to content Skip to sidebar Skip to footer

Use Options Menu Without Action Bar

I'm am using this to hide the action-/titlebar in my android application this.requestWindowFeature(Window.FEATURE_NO_TITLE); I created my options menu with this: MenuInflater infl

Solution 1:

I found the problem myself, stupid...

I changed:

publicclassMainActivityextendsActionBarActivity {

to

publicclassMainActivityextendsActivity {

Post a Comment for "Use Options Menu Without Action Bar"