我正在尝试在 android 中制作一个选项菜单,如此链接 http://developer.android.com/guide/topics/ui/menus.html#options-menu
但我开发的菜单不显示在我的页面底部,而是显示在顶部操作栏中。
我的 xml 如下 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>
我的java代码是
@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);
}
}
我该怎么做才能在我的应用程序底部而不是顶部操作栏上显示菜单?
我的菜单如下图所示
我想创建如下图所示的菜单
怎么能这样做?有人能帮我吗?