How to set menu to Toolbar in Android

后端 未结 14 1434
轻奢々
轻奢々 2020-11-29 20:17

I want use ToolBar instead of ActionBar, but don\'t show me menu in toolbar!!! i want set menu such as Refresh or Setting<

14条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-29 20:47

    In your activity override this method.

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

    This will inflate your menu below:

     
        
    
            
    
            
    
        
    

提交回复
热议问题