How to get an MenuItem by id

前端 未结 3 1063
-上瘾入骨i
-上瘾入骨i 2021-01-01 18:08

I have my menuItem on my res/menu/student_marks.xml file:



        
3条回答
  •  温柔的废话
    2021-01-01 19:06

    Menu optionsMenu;
    
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
       getMenuInflater().inflate(R.menu.main, menu);
       //  store the menu to var when creating options menu
       optionsMenu = menu;
    }
    

    And to get a menu item:

    MenuItem item = optionsMenu.findItem(R.id. action_selected_year);
    

提交回复
热议问题