1

I would like to create android options menu (left button on android device) looking like this one:

screen1

but using onPrepareOptionsMenu creates the menu which looks like this one:

screen2

Could you please point me how to change the look of the menu? Is there anything I can set in menu XML to change it's look or maybe I should use: onPrepareContextMenu?

Thanks in advance for your reply.

1 Answers1

1

Add

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

attribute to the <activity> tag in project's AndroidManifest.xml

<activity android:name="YourActivity"
          android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
          >
Pang
  • 9,564
  • 146
  • 81
  • 122
sandeep_jagtap
  • 1,484
  • 2
  • 17
  • 24