0

http://s21.postimg.org/91fifywlz/Untitled.png

How I can remove this button? Android API 17.

Matthieu
  • 2,736
  • 4
  • 57
  • 87
master_Alish
  • 373
  • 2
  • 8

3 Answers3

2

remove @Override public boolean onCreateOptionsMenu(Menu menu) {} and

@Override public boolean onOptionsItemSelected(MenuItem item) {}
Dima
  • 158
  • 6
2

Set your android:targetSdkVersion to 14 or higher. See also the "Say Goodbye to the Menu Button" post from the Android Developers Blog.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
0

You can override these methods, if removing them didn't work for you.

public boolean onCreateOptionsMenu (Menu menu){
// do nothing here. Leave it as it is.
}

public boolean onOptionsItemSelected (MenuItem item){
// do nothing here. 
}
CopsOnRoad
  • 237,138
  • 77
  • 654
  • 440