Android Development - getMenuInflater(R.menu.main, menu)

前端 未结 6 865
心在旅途
心在旅途 2021-01-03 05:02

I\'m learning android and following a simple camera app tutorial. There\'s a snippet of code that I\'ve reproduced but I am getting an error on it and I\'m not sure why.

6条回答
  •  执念已碎
    2021-01-03 05:40

    Try this ...

    public boolean OnCreateOptionsMenu(Menu menu){
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
    

提交回复
热议问题