Android, How to create option Menu

后端 未结 11 1843
执笔经年
执笔经年 2020-11-27 14:11

Here I tried to make option menu, but menu is not displaying on screen, so please guide me where am I doing mistake...

MenuTest.java

public class Men         


        
11条回答
  •  难免孤独
    2020-11-27 14:50

    Replace return super.onCreateOptionsMenu(menu); with return true; in your onCreateOptionsMenu method This will help

    And you should also have the onCreate method in your activity

提交回复
热议问题