
How I can remove this button? Android API 17.

How I can remove this button? Android API 17.
remove @Override public boolean onCreateOptionsMenu(Menu menu) {}
and
@Override public boolean onOptionsItemSelected(MenuItem item) {}
Set your android:targetSdkVersion to 14 or higher. See also the "Say Goodbye to the Menu Button" post from the Android Developers Blog.
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.
}