将菜单资源文件添加到不同的活动

时间:2016-03-13 13:23:15

标签: android xml android-layout android-menu

我想在我的活动中添加操作栏项。但我只能拥有Main活动的菜单资源文件。 有人可以帮我设置动作栏项目到我的活动吗?

1 个答案:

答案 0 :(得分:0)

在app / res / menu文件夹中创建新的菜单资源文件(xml文件)。在该文件中,根据需要定义菜单。然后在活动.java文件中包含OnCreateOptionsMenu方法中的菜单。

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.your_menu_file, menu);
    return true;
}