How to set menu to Toolbar in Android

后端 未结 14 1465
轻奢々
轻奢々 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:46

    In XML add one line inside

    
    

    In java file, replace this:

     setSupportActionBar(toolbar);
            if (getSupportActionBar() != null) {
                getSupportActionBar().setTitle("Main Page");
            }
    

    with this:

    toolbar.setTitle("Main Page")
    

提交回复
热议问题