I am trying to make an options menu in android like this link http://developer.android.com/guide/topics/ui/menus.html#options-menu
but my developed menu is not displayed at the bottom of my page, but in the top action bar.
my xml is below: my_options_menu.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/new_game" android:icon="@drawable/menu_addnew" android:title="Νέο" android:showAsAction="ifRoom"/> <item android:id="@+id/help" android:icon="@drawable/menu_addnew" android:title="Βοήθεια" /> </menu>
and my java code
@Override public boolean onCreateOptionsMenu(Menu menu){ MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.my_options_menu, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle item selection switch (item.getItemId()) { case R.id.new_game: //newGame(); return true; case R.id.help: //showHelp(); return true; default: return super.onOptionsItemSelected(item); } }
What can I do to show the menu at the bottom of my application, and not on the top action bar?
My menu is shown below. 
I want to create a menu as shown below.

How can I do that? Can anybody help me?
source share