Menu Items are not showing on Action Bar

前端 未结 12 788
清歌不尽
清歌不尽 2020-11-29 20:57

I have made a completely new project. I have added items to the menu layout file. Those items do not show up on the action bar\'s right side. I remember that an

12条回答
  •  孤街浪徒
    2020-11-29 21:34

    I had the same problem. And I did all of the things that were said above. My problem was I forgot to override onCreateoptionMenu(Menu menu).

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

提交回复
热议问题