Hy!
I want to make my first Menue
I just createt the folder /res/menu and the file menu.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/quit"
android:icon="@drawable/icon"
android:title="Quit" />
</menu>
In my code i add:
@Override
public void onCreateContextMenu(ContextMenu menu, View v,
ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu, v, menuInfo);
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu,menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
Main.this.finish();
return true;
}
If i start my app and press the menu button nothing appear.
Whats wrong?