0

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

How I can remove this button? Android API 17.

Matthieu
  • 2,816
  • 4
  • 57
  • 83
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
  • 954,112
  • 185
  • 2,315
  • 2,367
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
  • 175,842
  • 51
  • 533
  • 380