menu directory is missing

后端 未结 5 754
有刺的猬
有刺的猬 2020-12-14 17:15

I\'m a very new programmer in Android. I\'m trying to define an action overflow button in my app. From what I\'ve read it involves modifying the menu.xml file.

5条回答
  •  -上瘾入骨i
    2020-12-14 17:54

    You can create a menu dir in the res/ folder. Right click on res in the project view in Android Studio and click new -> "Android Resource Directory". Then select menu under "Resource Type". You can then add a file to that new res/menu directory that contains your menu items like this (res/menu/main_menu.xml)

    
        
    
    

    And get sure to override the onCreateOptionsMenu(Menu menu) in the MainActivity class like this:

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.main_menu,menu);
        return true;
    }
    

提交回复
热议问题