How to set menu to Toolbar in Android

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

    Also you need this, to implement some action to every options of menu.

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            case R.id.menu_help:
                Toast.makeText(this, "This is teh option help", Toast.LENGTH_LONG).show();
                break;
            default:
                break;
        }
        return true;
    }
    

提交回复
热议问题